From f7fc873baf7215c03804f48d3735b13e44c98a73 Mon Sep 17 00:00:00 2001 From: user Date: Fri, 5 Apr 2024 21:12:19 +0300 Subject: [PATCH] fix misprint --- app/core/background/license_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/core/background/license_service.py b/app/core/background/license_service.py index a0580ab..28454bf 100644 --- a/app/core/background/license_service.py +++ b/app/core/background/license_service.py @@ -37,7 +37,7 @@ async def license_index_loop(memory, platform_found: bool, seqno: int) -> [bool, for content in session.query(UserContent).filter( and_( - UserContent.startswith('nft/'), + UserContent.type.startswith('nft/'), UserContent.updated < (datetime.now() - timedelta(minutes=15)), ) ):