1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Replace with method overload

This commit is contained in:
ferferga 2020-03-24 20:15:59 +01:00
parent e383c3dee1
commit 8201322715
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader'
html += '<span style="margin-right: 10px;">';
var startAtDisplay = totalRecordCount ? startIndex + 1 : 0;
html += globalize.translate("ListPaging").replace("{0}", startAtDisplay + '-' + recordsEnd).replace("{1}", totalRecordCount);
html += globalize.translate("ListPaging", startAtDisplay + '-' + recordsEnd, totalRecordCount);
html += '</span>';