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

missing var

This commit is contained in:
grafixeyehero 2019-10-16 18:23:18 +03:00
parent 36fae11a38
commit a1538a4ba6

View file

@ -90,7 +90,7 @@ define(["jQuery", "loading", "emby-checkbox", "listViewStyle", "emby-input", "em
var hexCodes = [];
var view = new DataView(buffer);
for (i = 0; i < view.byteLength; i += 4) {
for (var i = 0; i < view.byteLength; i += 4) {
var value = view.getUint32(i);
var stringValue = value.toString(16);
var paddedValue = ("00000000" + stringValue).slice(-"00000000".length);