Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/d1e1aef5f796ff5c25338d44cb4f6a7aadf24af4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix possible race condition

pull/2447/head
Bond_009 5 years ago
parent 6d6fa13550
commit d1e1aef5f7

@ -970,9 +970,8 @@ namespace MediaBrowser.Providers.Manager
var id = item.Id;
_logger.LogInformation("OnRefreshProgress {0} {1}", id.ToString("N", CultureInfo.InvariantCulture), progress);
if (_activeRefreshes.ContainsKey(id))
if (_activeRefreshes.TryAdd(id, progress))
{
_activeRefreshes[id] = progress;
RefreshProgress?.Invoke(this, new GenericEventArgs<Tuple<BaseItem, double>>(new Tuple<BaseItem, double>(item, progress)));
}
else

Loading…
Cancel
Save