Skip to content

Commit dc61833

Browse files
authored
Merge pull request #129 from Stremio/add-new-sub-size
Add New Sub Size for WebOS
2 parents e52b3a6 + c842f9c commit dc61833

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/WebOsVideo/WebOsVideo.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ function stremioSubOffsets(offset) {
7676
}
7777

7878
function stremioSubSizes(size) {
79-
// there is also: 0 (tiny)
80-
if (size <= 100) {
79+
if (size <= 25) {
80+
return 0;
81+
} else if (size <= 100) {
8182
return 1;
8283
} else if (size <= 125) {
83-
// not used because of 50% step
8484
return 2;
8585
} else if (size <= 150) {
8686
return 3;

0 commit comments

Comments
 (0)