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

Remove redundant variable assignments

This commit is contained in:
MrTimscampi 2020-07-30 19:42:30 +02:00
parent e7180e2633
commit a395e6b3d3
6 changed files with 10 additions and 24 deletions

View file

@ -231,8 +231,7 @@ define(['loading', 'globalize', 'events', 'viewManager', 'skinManager', 'backdro
max /= 8;
max *= 1000000;
max *= 0.7;
max = parseInt(max);
return max;
return parseInt(max, 10);
}
}
/* eslint-enable compat/compat */