We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e52b3a6 + c842f9c commit dc61833Copy full SHA for dc61833
1 file changed
src/WebOsVideo/WebOsVideo.js
@@ -76,11 +76,11 @@ function stremioSubOffsets(offset) {
76
}
77
78
function stremioSubSizes(size) {
79
- // there is also: 0 (tiny)
80
- if (size <= 100) {
+ if (size <= 25) {
+ return 0;
81
+ } else if (size <= 100) {
82
return 1;
83
} else if (size <= 125) {
- // not used because of 50% step
84
return 2;
85
} else if (size <= 150) {
86
return 3;
0 commit comments