Skip to content

Commit

Permalink
⬆️ Bump dotenv from 3.2.0 to 3.2.2 (#37)
Browse files Browse the repository at this point in the history
* ⬆️ Bump dotenv from 3.2.0 to 3.2.2

* linter
  • Loading branch information
bmiddha authored Jul 15, 2023
1 parent 79f861d commit e2fa25a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion discord.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class DiscordClient {
*/
public async getChannels(): Promise<BaseChannel[]> {
try {
const res = (await this.#fetch({ endpoint: `/guilds/${this.#guildId}/channels` }));
const res = await this.#fetch({ endpoint: `/guilds/${this.#guildId}/channels` });
const parsed = await res.json() as BaseChannel[];
return parsed.map(
({ id, type, name }): BaseChannel => ({ id, type, name }),
Expand Down
2 changes: 1 addition & 1 deletion envConfig.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "https://deno.land/x/[email protected].0/load.ts";
import "https://deno.land/x/[email protected].2/load.ts";

/** Prefix used for environment variable config options */
const ENVIRONMENT_VARIABLE_PREFIX = "DISCORD_EVENTS_SYNC_";
Expand Down

0 comments on commit e2fa25a

Please sign in to comment.