diff options
Diffstat (limited to 'source/github-helpers/api.ts')
-rw-r--r-- | source/github-helpers/api.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/github-helpers/api.ts b/source/github-helpers/api.ts index 2ec0e5ee..dc27b44a 100644 --- a/source/github-helpers/api.ts +++ b/source/github-helpers/api.ts @@ -49,7 +49,7 @@ interface RestResponse extends AnyObject { ok: boolean; } -export const escapeKey = (value: string | number): string => '_' + String(value).replace(/[ ./-]/g, '_'); +export const escapeKey = (value: string | number): string => '_' + String(value).replace(/[ ./-@]/g, '_'); export class RefinedGitHubAPIError extends Error { response: AnyObject = {}; |