diff --git a/Teknik/Areas/Paste/Controllers/PasteController.cs b/Teknik/Areas/Paste/Controllers/PasteController.cs index 1ebadd1..0a56c1c 100644 --- a/Teknik/Areas/Paste/Controllers/PasteController.cs +++ b/Teknik/Areas/Paste/Controllers/PasteController.cs @@ -353,7 +353,8 @@ namespace Teknik.Areas.Paste.Controllers paste.IV = iv; paste.BlockSize = _config.PasteConfig.BlockSize; - paste.HashedPassword = PasteHelper.HashPassword(paste.Key, password); + if (!string.IsNullOrEmpty(password)) + paste.HashedPassword = PasteHelper.HashPassword(paste.Key, password); paste.FileName = fileName; paste.Title = model.Title; paste.Syntax = model.Syntax;