File tree 2 files changed +3
-1
lines changed
packages/frontend/src/pages/reversi
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 7
7
### Client
8
8
- Fix: ` /about#federation ` ページなどで各インスタンスのチャートが表示されなくなっていた問題を修正
9
9
- Fix: ユーザーページの追加情報のラベルを投稿者のサーバーの絵文字で表示する (#13968 )
10
+ - Fix: リバーシの対局を正しく共有できないことがある問題を修正
10
11
11
12
### Server
12
13
- チャート生成時にinstance.suspentionStateに置き換えられたinstance.isSuspendedが参照されてしまう問題を修正
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ import { useStream } from '@/stream.js';
20
20
import { signinRequired } from '@/account.js';
21
21
import { useRouter } from '@/router/supplier.js';
22
22
import * as os from '@/os.js';
23
+ import { url } from '@/config.js';
23
24
import { i18n } from '@/i18n.js';
24
25
import { useInterval } from '@/scripts/use-interval.js';
25
26
@@ -44,7 +45,7 @@ function start(_game: Misskey.entities.ReversiGameDetailed) {
44
45
45
46
if (shareWhenStart.value) {
46
47
misskeyApi('notes/create', {
47
- text: i18n.ts._reversi.iStartedAGame + '\n' + location.href ,
48
+ text: `${ i18n.ts._reversi.iStartedAGame}\n${url}/reversi/g/${props.gameId}` ,
48
49
visibility: 'home',
49
50
});
50
51
}
You can’t perform that action at this time.
0 commit comments