Skip to content

Commit aedfc6e

Browse files
committed
fix: Clean Remuxes task fails when primary user is empty.
1 parent fa337d8 commit aedfc6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jellyfin.Plugin.DoViRemux/CleanRemuxesTask.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public async Task ExecuteAsync(IProgress<double> progress, CancellationToken can
3131
?? throw new Exception("Can't get plugin instance");
3232

3333
var configuration = plugin.Configuration;
34-
if (configuration.PrimaryUser is null)
34+
if (string.IsNullOrEmpty(configuration.PrimaryUser))
3535
{
3636
return;
3737
}

0 commit comments

Comments
 (0)