diff --git a/src/api/endpoints/posts/create.js b/src/api/endpoints/posts/create.js
index 61f8e714fb..607867403a 100644
--- a/src/api/endpoints/posts/create.js
+++ b/src/api/endpoints/posts/create.js
@@ -174,6 +174,11 @@ module.exports = (params, user, app) =>
 			return rej('poll choices must be an array');
 		}
 
+		// 選択肢が空の配列でエラー
+		if (poll.choices.length == 0) {
+			return rej('poll choices is required');
+		}
+
 		// Validate each choices
 		const shouldReject = poll.choices.some(choice => {
 			if (typeof choice !== 'string') return true;