Skip to content

Commit

Permalink
Fixed retries error on download
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky4546 committed Dec 8, 2023
1 parent 550a15d commit 6ebcefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion provider_video_m3u/lib/channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def get_channels(self):
try:
self.ch_db_list = self.db.get_channels(self.plugin_obj.name, self.instance_key)

dn_filename = self.tmp_mgmt.download_file(url, TMP_FOLDERNAME, None, file_type)
dn_filename = self.tmp_mgmt.download_file(url, 2, TMP_FOLDERNAME, None, file_type)
if dn_filename is None:
raise exceptions.CabernetException(
'{} Channel Request Failed, unable to download file for instance {}'
Expand Down
2 changes: 1 addition & 1 deletion provider_video_m3u/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"id": "provider_video_m3u",
"name": "M3U",
"version": {
"current": "0.1.12"
"current": "0.1.13"
},
"requires": [{
"cabernet": {
Expand Down

0 comments on commit 6ebcefe

Please sign in to comment.