зеркало из https://github.com/mozilla/hawk.git
Fix replace. Closes #246
This commit is contained in:
Родитель
15eef2e135
Коммит
0998af16df
|
@ -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';
|
||||
|
|
Загрузка…
Ссылка в новой задаче