diff --git a/apps/m3u/tasks.py b/apps/m3u/tasks.py index ba2edaef..b892caef 100644 --- a/apps/m3u/tasks.py +++ b/apps/m3u/tasks.py @@ -774,7 +774,7 @@ def process_xc_category_direct(account_id, batch, groups, hash_keys): group_title = group_name stream_hash = Stream.generate_hash_key( - name, url, tvg_id, hash_keys, m3u_id=str(account_id) + name, url, tvg_id, hash_keys, m3u_id=account_id ) stream_props = { "name": name, @@ -942,7 +942,7 @@ def process_m3u_batch_direct(account_id, batch, groups, hash_keys): ) continue - stream_hash = Stream.generate_hash_key(name, url, tvg_id, hash_keys, m3u_id=str(account_id)) + stream_hash = Stream.generate_hash_key(name, url, tvg_id, hash_keys, m3u_id=account_id) stream_props = { "name": name, "url": url,