diff --git a/package.json b/package.json
index af404da5e9..c5092e6f19 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
 {
 	"name": "misskey",
 	"author": "syuilo <i@syuilo.com>",
-	"version": "3.1.0",
-	"clientVersion": "1.0.6526",
+	"version": "3.1.1",
+	"clientVersion": "1.0.6528",
 	"codename": "nighthike",
 	"main": "./built/index.js",
 	"private": true,
diff --git a/src/client/app/mobile/api/post.ts b/src/client/app/mobile/api/post.ts
index 0634c52642..15b2f6b691 100644
--- a/src/client/app/mobile/api/post.ts
+++ b/src/client/app/mobile/api/post.ts
@@ -18,7 +18,7 @@ export default (os) => (opts) => {
 		}
 	}).$mount();
 	vm.$once('cancel', recover);
-	vm.$once('note', recover);
+	vm.$once('posted', recover);
 	document.body.appendChild(vm.$el);
 	(vm as any).focus();
 };