1
0
Fork 0

Hopefully fix false positive

refactor/models
Bsian 2019-12-18 23:26:42 +00:00
parent f96808e6d6
commit 23d82e0f3a
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ export default class Pull extends Command {
this.client.updating = false;
return updateMessage.edit(updatedMessage);
}
if (!pull.includes('origin/master')) {
if (!pull.includes('origin/master') && !pull.includes(' changed, ')) {
const updatedMessage = updateMessage.content.replace(`${this.client.stores.emojis.loading} ***Fetching latest commit...***`, `${this.client.stores.emojis.error} ***Unexpected git output***`)
.replace(/```$/, `${pull}\n\`\`\``);
this.client.updating = false;