diff options
Diffstat (limited to 'dist/plyr.js')
-rw-r--r-- | dist/plyr.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/plyr.js b/dist/plyr.js index b694b070..d27e0409 100644 --- a/dist/plyr.js +++ b/dist/plyr.js @@ -972,7 +972,7 @@ function format(input) { } return input.toString().replace(/{(\d+)}/g, function (match, i) { - return is.string(args[i]) ? args[i] : ''; + return args[i].toString(); }); } |