mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Added missing message string
- we use this property in the code but it was missing from the messages object - this was causing an error in the `tpl` library so this commit adds the correct message
This commit is contained in:
parent
ce81d907b6
commit
ac5f42b7ad
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ const {CookieJar} = require('tough-cookie');
|
|||
|
||||
const messages = {
|
||||
noUrlProvided: 'No url provided.',
|
||||
insufficientMetadata: 'URL contains insufficient metadata.'
|
||||
insufficientMetadata: 'URL contains insufficient metadata.',
|
||||
unknownProvider: 'No provider found for supplied URL.'
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue