diff --git a/app/core/background/indexer_service.py b/app/core/background/indexer_service.py index 5987f79..f7ab259 100644 --- a/app/core/background/indexer_service.py +++ b/app/core/background/indexer_service.py @@ -119,9 +119,6 @@ async def indexer_loop(platform_found: bool, seqno: int) -> [bool, int]: encrypted_stored_content.updated = datetime.now() session.commit() - - - return platform_found, seqno onchain_stored_content = StoredContent( @@ -130,6 +127,7 @@ async def indexer_loop(platform_found: bool, seqno: int) -> [bool, int]: onchain_index=item_index, owner_address=item_owner_address.to_string(1, 1, 1) if item_owner_address else None, meta=item_metadata_packed, + filename="UNKNOWN_ENCRYPTED_CONTENT", user_id=user_wallet_connection.user_id if user_wallet_connection else None, created=datetime.now(), encrypted=True,