Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nb557 committed Oct 7, 2024
1 parent a92c008 commit 2d96d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion online_mod.js
Original file line number Diff line number Diff line change
Expand Up @@ -3317,7 +3317,7 @@
var prefer_mp4 = Lampa.Storage.field('online_mod_prefer_mp4') === true;
var prox = component.proxy('cdnmovies');
var stream_prox = prox;
var iframe_proxy = !prox && Lampa.Storage.field('online_mod_iframe_proxy') === true && !startsWith(window.location.protocol, 'http');
var iframe_proxy = !prox && Lampa.Storage.field('online_mod_iframe_proxy') === true && (!startsWith(window.location.protocol, 'http') || window.location.origin.indexOf('lampa') !== -1) && !Lampa.Platform.is('android');
var host = 'https://cdnmovies.net';
var ref = host + '/';
var user_agent = 'Mozilla/5.0 (Linux; Android 10; K; client) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.6167.178 Mobile Safari/537.36';
Expand Down

0 comments on commit 2d96d97

Please sign in to comment.