From 357c3e0f5033b0182dafaee936dfca93da3adee7 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sat, 10 Jan 2026 22:52:07 -0500 Subject: [PATCH] remove image array --- app/api/schemas/report.py | 2 +- app/api/services/web_contents.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/schemas/report.py b/app/api/schemas/report.py index 00a5344..632924c 100644 --- a/app/api/schemas/report.py +++ b/app/api/schemas/report.py @@ -3,4 +3,4 @@ from marshmallow import Schema, fields class ReportSchema(Schema): token = fields.Str(required=True) uid = fields.Str(required=True) - page = fields.Str(required=True) + page = fields.Int(required=True) diff --git a/app/api/services/web_contents.py b/app/api/services/web_contents.py index dda6d34..a0e128e 100644 --- a/app/api/services/web_contents.py +++ b/app/api/services/web_contents.py @@ -76,7 +76,7 @@ class WebContentsService(BaseService): web_contents_data[t.settings_key.strip()] = t.setting_value.strip() # The template set up - web_contents_data["web_images"]=[] + # web_contents_data["web_images"]=[] return web_contents_data