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:
Daniel Lockyer 2022-03-21 09:07:54 +00:00
parent ce81d907b6
commit ac5f42b7ad
No known key found for this signature in database
GPG Key ID: D21186F0B47295AD

View File

@ -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.'
};
/**