From ffb0bcf39c773c5c28e1d8df2e04f9732341626e Mon Sep 17 00:00:00 2001 From: Sketch <75850871+SketchMaster2001@users.noreply.github.com> Date: Fri, 5 Jul 2024 20:23:22 -0400 Subject: [PATCH] fix: Change 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 e88f4366..ec5a039d 100644 --- a/theunderground/intro_info.py +++ b/theunderground/intro_info.py @@ -56,7 +56,7 @@ def add_intro_info(): if intro_db.cnt_type == ContentTypes.Video: # Videos require the ID to be padded to 16 characters. - intro_db.cnt_id = int(str(intro_db.cnt_id).ljust(16, "0")) + intro_db.cnt_id = 1000000000000000 + intro_db.cnt_id db.session.add(intro_db) db.session.commit()