Fix tournament beatmap backgrounds occasionally not loading

This commit is contained in:
Dean Herbert 2024-01-17 16:26:01 +09:00
parent 266c7b28e8
commit 06aa35a10e
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ private partial class NoUnloadBeatmapSetCover : UpdateableOnlineBeatmapSetCover
// Use DelayedLoadWrapper to avoid content unloading when switching away to another screen.
protected override DelayedLoadWrapper CreateDelayedLoadWrapper(Func<Drawable> createContentFunc, double timeBeforeLoad)
=> new DelayedLoadWrapper(createContentFunc, timeBeforeLoad);
=> new DelayedLoadWrapper(createContentFunc(), timeBeforeLoad);
}
}
}