Skip to content

Commit

Permalink
fix: Issues after bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
vxern committed Aug 24, 2024
1 parent c6f5ad6 commit 4c277d7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/library/adapters/dictionaries/adapters/wordnik.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { LearningLanguage } from "logos:constants/languages/learning";
import { DictionaryAdapter } from "logos/adapters/dictionaries/adapter";
import type { RelationField, RhymeField } from "logos/adapters/dictionaries/dictionary-entry";
import type { DictionaryEntry, RelationField, RhymeField } from "logos/adapters/dictionaries/dictionary-entry";
import type { Client } from "logos/client";

interface WordnikResult {
Expand Down
2 changes: 1 addition & 1 deletion source/library/commands/handlers/information/guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function getProficiencyRoleDistribution(client: Client, guild: Logos.Guild): Pro
const roleId = member.roles.filter((roleId) => proficiencyRoleIds.includes(roleId)).at(0);

if (roleId !== undefined) {
roleFrequencies[`${roleId}`] += 1;
roleFrequencies[`${roleId}`]! += 1;
} else {
withoutProficiencyRole += 1;
}
Expand Down
2 changes: 1 addition & 1 deletion source/library/services/music.ts
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ class MusicSession extends EventEmitter {
this.queueable.title = track.info.title;
}

await this.player.playTrack({ track: track.encoded });
await this.player.playTrack({ track: { encoded: track.encoded } });

const strings = constants.contexts.nowPlaying({
localise: this.client.localise,
Expand Down

0 comments on commit 4c277d7

Please sign in to comment.