fix(backend): リモートサーバーの情報が更新できない問題を修正

Fix #10787
This commit is contained in:
syuilo 2023-05-09 14:57:42 +09:00
parent 1c0ec222b4
commit b2f6c67aa9
2 changed files with 2 additions and 4 deletions

View File

@ -22,7 +22,7 @@
- Fix: ユーザー選択ダイアログが表示されない問題を修正 - Fix: ユーザー選択ダイアログが表示されない問題を修正
### Server ### Server
- - Fix: リモートサーバーの情報が更新できない問題を修正
## 13.12.0 ## 13.12.0

View File

@ -75,8 +75,6 @@ export class FederatedInstanceService {
return response.raw[0]; return response.raw[0];
}); });
const updated = result.raw[0]; this.federatedInstanceCache.set(result.host, result);
this.federatedInstanceCache.set(updated.host, updated);
} }
} }