From fcc7466c11514aebe479aab899a1c1d3f574a4cb Mon Sep 17 00:00:00 2001
From: syuilo <syuilotan@yahoo.co.jp>
Date: Thu, 7 Feb 2019 23:27:42 +0900
Subject: [PATCH] Fix bug

---
 .../endpoints/admin/federation/remove-all-following.ts   | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

diff --git a/src/server/api/endpoints/admin/federation/remove-all-following.ts b/src/server/api/endpoints/admin/federation/remove-all-following.ts
index 1021965b1..d4dbc3e48 100644
--- a/src/server/api/endpoints/admin/federation/remove-all-following.ts
+++ b/src/server/api/endpoints/admin/federation/remove-all-following.ts
@@ -17,15 +17,8 @@ export const meta = {
 };
 
 export default define(meta, (ps, me) => new Promise(async (res, rej) => {
-	const instance = await Instance
-		.findOne({ host: ps.host });
-
-	if (instance == null) {
-		return rej('instance not found');
-	}
-
 	const followings = await Following.find({
-		'_follower.host': { $ne: null }
+		'_follower.host': ps.host
 	});
 
 	const pairs = await Promise.all(followings.map(f => Promise.all([