1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-27 14:28:53 +09:00

Merge commit 'refs/pull/12142/head' of https://github.com/misskey-dev/misskey into develop

This commit is contained in:
NoriDev 2023-10-25 18:30:19 +09:00
commit ff3db74369
2 changed files with 3 additions and 2 deletions

View File

@ -24,6 +24,7 @@
https://misskey-hub.net/docs/advanced/publish-on-your-website.html
- Feat: AiScript関数`Mk:nyaize()`が追加されました
- Fix: 投稿フォームでのユーザー変更がプレビューに反映されない問題を修正
- Fix: チャンネルの作成・更新時に失敗した場合何も表示されない問題を修正 #11983
### Server
- Enhance: RedisへのTLのキャッシュをオフにできるように

View File

@ -154,11 +154,11 @@ function save() {
if (props.channelId) {
params.channelId = props.channelId;
os.api('channels/update', params).then(() => {
os.apiWithDialog('channels/update', params).then(() => {
os.success();
});
} else {
os.api('channels/create', params).then(created => {
os.apiWithDialog('channels/create', params).then(created => {
os.success();
router.push(`/channels/${created.id}`);
});