From 6b0cc952902b430da259fff0c9d626021b3c59aa Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Sat, 6 Jul 2024 10:36:20 -0400 Subject: [PATCH] fix: Video intro info ID semantics --- theunderground/intro_info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theunderground/intro_info.py b/theunderground/intro_info.py index 58805f0e..9e5eb10d 100644 --- a/theunderground/intro_info.py +++ b/theunderground/intro_info.py @@ -56,7 +56,7 @@ def add_intro_info(): # Wii Room requires video content id's to be 16 characters long. if intro_db.cnt_type == ContentTypes.Video: - intro_db.cnt_id = 1000000000000000 + intro_db.cnt_id + intro_db.cnt_id = int(str(intro_db.cnt_id).ljust(16, "0")) db.session.add(intro_db) db.session.commit()