Skip to content

Commit 8be2e2e

Browse files
committed
games: Fix URL logging for Chess
1 parent ea4a60d commit 8be2e2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ps/games/chess/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export class Chess extends BaseGame<State> {
170170
iconURL: 'https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Chess_tile_kl.svg/1200px-Chess_tile_kl.svg.png',
171171
})
172172
.setTitle(`${this.players.W.name} vs ${this.players.B.name}`)
173-
.setURL(this.lichessURL);
173+
.setURL(await this.getURL());
174174
}
175175

176176
render(side: Turn | null) {

0 commit comments

Comments
 (0)