This commit is contained in:
Eran Hammer 2018-11-02 22:18:16 -07:00
Родитель 15eef2e135
Коммит 0998af16df
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -393,7 +393,7 @@ hawk.crypto = {
(options.hash || '') + '\n';
if (options.ext) {
normalized += options.ext.replace('\\', '\\\\').replace('\n', '\\n');
normalized += options.ext.replace(/\\/g, '\\\\').replace(/\n/g, '\\n');
}
normalized += '\n';

Просмотреть файл

@ -75,7 +75,7 @@ exports.generateNormalizedString = function (type, options) {
(options.hash || '') + '\n';
if (options.ext) {
normalized = normalized + options.ext.replace('\\', '\\\\').replace('\n', '\\n');
normalized = normalized + options.ext.replace(/\\/g, '\\\\').replace(/\n/g, '\\n');
}
normalized = normalized + '\n';