Commit 78e61c6 1 parent 7ce6a9b commit 78e61c6 Copy full SHA for 78e61c6
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 53
53
- Fix: ダイレクト投稿の宛先が保存されない問題を修正
54
54
- Fix: Playのページを離れたときに、Playが正常に初期化されない問題を修正
55
55
- Fix: ページのOGP URLが間違っているのを修正
56
+ - Fix: リバーシの対局を正しく共有できないことがある問題を修正
56
57
- Fix: 通知をグループ化している際に、人数が正常に表示されないことがある問題を修正
57
58
58
59
### Server
Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ import MkSwitch from '@/components/MkSwitch.vue';
151
151
import { deepClone } from '@/scripts/clone.js';
152
152
import { useInterval } from '@/scripts/use-interval.js';
153
153
import { signinRequired } from '@/account.js';
154
+ import { url } from '@/config.js';
154
155
import { i18n } from '@/i18n.js';
155
156
import { misskeyApi } from '@/scripts/misskey-api.js';
156
157
import { userPage } from '@/filters/user.js';
@@ -442,7 +443,7 @@ function autoplay() {
442
443
443
444
function share() {
444
445
os.post({
445
- initialText: `#MisskeyReversi ${location.href }`,
446
+ initialText: `#MisskeyReversi\n${url}/reversi/g/${game.value.id }`,
446
447
instant: true,
447
448
});
448
449
}
You can’t perform that action at this time.
0 commit comments