aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-10-26 13:56:30 +0200
committerBond_009 <bond.009@outlook.com>2021-10-26 13:56:30 +0200
commit1b6eb2ff2d2cc3973fa529c721cf50e3ad849646 (patch)
treefe57e9cabc1553d04b2897367e98ccb9b143ff89 /Jellyfin.Server.Implementations
parentdc72d90703eab626f5241755251fa97c9b854604 (diff)
Enable nullable for more files
Diffstat (limited to 'Jellyfin.Server.Implementations')
-rw-r--r--Jellyfin.Server.Implementations/Users/UserManager.cs6
1 files changed, 1 insertions, 5 deletions
diff --git a/Jellyfin.Server.Implementations/Users/UserManager.cs b/Jellyfin.Server.Implementations/Users/UserManager.cs
index 704a6a84e..8ca6e8d21 100644
--- a/Jellyfin.Server.Implementations/Users/UserManager.cs
+++ b/Jellyfin.Server.Implementations/Users/UserManager.cs
@@ -530,11 +530,7 @@ namespace Jellyfin.Server.Implementations.Users
}
}
- return new PinRedeemResult
- {
- Success = false,
- UsersReset = Array.Empty<string>()
- };
+ return new PinRedeemResult();
}
/// <inheritdoc />