From f90b24db40db45950a546c33d58157aa493415d5 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Thu, 2 Oct 2025 09:28:02 -0500 Subject: [PATCH] Change default M3U hash key to URL only for new installs. --- core/migrations/0009_m3u_hash_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/migrations/0009_m3u_hash_settings.py b/core/migrations/0009_m3u_hash_settings.py index eab5f141..3c6283fa 100644 --- a/core/migrations/0009_m3u_hash_settings.py +++ b/core/migrations/0009_m3u_hash_settings.py @@ -8,7 +8,7 @@ def preload_core_settings(apps, schema_editor): CoreSettings.objects.create( key=slugify("M3U Hash Key"), name="M3U Hash Key", - value="name,url,tvg_id", + value="url", ) class Migration(migrations.Migration):