Skip to content

Commit

Permalink
fix(InMemoryProvider): addressing missing name changeshttps://github.…
Browse files Browse the repository at this point in the history
…com//pull/53/files#r379866275 and
  • Loading branch information
Khaaz authored Feb 16, 2020
1 parent 4f7fc78 commit 169905b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Database/InMemoryProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class InMemoryProvider extends ADBProvider {
async updateGuild(key, gID, value) {
const guild = await this.fetchGuild(gID);
guild[key] = value;
return this.saveGuildSchema(gID, guild);
return this.saveGuild(gID, guild);
}

async updateAxon(key, value) {
Expand All @@ -85,7 +85,7 @@ class InMemoryProvider extends ADBProvider {
axonConf = await this.initAxon();
}
axonConf[key] = value;
return this.saveAxonSchema(axonConf);
return this.saveAxon(axonConf);
}
}

Expand Down

1 comment on commit 169905b

@Khaaz
Copy link
Owner Author

@Khaaz Khaaz commented on 169905b Feb 16, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.