mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
Error when refreshing library - The data is NULL at ordinal #6078
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @majkinetor on GitHub (Jun 30, 2024).
Please describe your bug
Library stopped refreshing after upgrading to v10.9.6 (error continues on 10.9.7).
It also shows 'Failed' in scheduled tasks
Reproduction Steps
Jellyfin Version
10.9.0
if other:
No response
Environment
Jellyfin logs
Plugin logs
@jellyfin-bot commented on GitHub (Jun 30, 2024):
Hi, it seems like your issue report has the following item(s) that need to be addressed:
This is an automated message, currently under testing. Please file an issue here if you encounter any problems.
@felix920506 commented on GitHub (Jun 30, 2024):
Sorry closed wrong issue
@solidsnake1298 commented on GitHub (Jul 19, 2024):
Can you try uninstalling the Playback Reporting plugin, restarting, and try your scan again?
@mplough commented on GitHub (Jul 20, 2024):
I'm seeing this issue on a stock install of 10.9.7 on macOS with no Playback Reporting plugin installed. Just speculating, but I'm wondering if there's something going on with a failed or incomplete database migration from a previous version?
@gnattu commented on GitHub (Jul 20, 2024):
The only change that could cause this is a failed migration that has being reported multiple times. Try https://github.com/jellyfin/jellyfin/issues/11994#issuecomment-2153332136 to fix your db.
@mplough commented on GitHub (Jul 20, 2024):
Thanks @gnattu, that was exactly it.
I needed to edit
migrations.xmlas explained in https://github.com/jellyfin/jellyfin/issues/11994#issuecomment-2153332136 and also setIsStartupWizardCompletedtotrueinsystem.xmlas explained in https://github.com/jellyfin/jellyfin/issues/11994#issuecomment-2171753391.After making those edits and restarting, the
Scan Media Librarytask ran with no issues.@majkinetor commented on GitHub (Jul 21, 2024):
Thanks