aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/QuickConnect
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-11-25 23:40:31 +0100
committerBond_009 <bond.009@outlook.com>2020-11-25 23:40:31 +0100
commit8c8a71692e2f42e30f95e9ff38cc5442a0d56978 (patch)
tree0ad3a0c4ea78de83d142c8446ee3d15345408fe9 /Emby.Server.Implementations/QuickConnect
parent9534f55eb077249b102e56cc0bc64e95b704cf85 (diff)
Remove Hex class as the BCL has one now
Diffstat (limited to 'Emby.Server.Implementations/QuickConnect')
-rw-r--r--Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs b/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs
index 140a67541..7bed06de3 100644
--- a/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs
+++ b/Emby.Server.Implementations/QuickConnect/QuickConnectManager.cs
@@ -243,7 +243,7 @@ namespace Emby.Server.Implementations.QuickConnect
Span<byte> bytes = stackalloc byte[length];
_rng.GetBytes(bytes);
- return Hex.Encode(bytes);
+ return Convert.ToHexString(bytes);
}
/// <inheritdoc/>