aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Model/ChannelManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'back-end/src/Model/ChannelManager.cs')
-rw-r--r--back-end/src/Model/ChannelManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/back-end/src/Model/ChannelManager.cs b/back-end/src/Model/ChannelManager.cs
index 22dbab9..7364b46 100644
--- a/back-end/src/Model/ChannelManager.cs
+++ b/back-end/src/Model/ChannelManager.cs
@@ -120,7 +120,7 @@ namespace Content.Publishing.Blog.Admin.Model
public static string ComputeContextId(IChannelContext context)
{
//Context-id is the hash of the base dir and index file path
- return ManagedHash.ComputeHexHash($"{context.BaseDir}/{context.IndexPath}", HashAlg.SHA1).ToLowerInvariant();
+ return ManagedHash.ComputeHash($"{context.BaseDir}/{context.IndexPath}", HashAlg.SHA1, HashEncodingMode.Hexadecimal).ToLowerInvariant();
}
///<inheritdoc/>