aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Model/ChannelManager.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-12-22 01:30:01 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-12-22 01:30:01 -0500
commitad28175287c1a5df9b715c0755ed040985314960 (patch)
tree8d93b67e277ef8ab26c02c44e62b06c58eaae8c0 /back-end/src/Model/ChannelManager.cs
parentaf67dab96747c7d83380e67de91dd25f46e9681f (diff)
integrate big package updates prep for release
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/>