Avoid the multiple queries for Gamedig monitor

This commit is contained in:
Louis Lam 2023-01-25 00:19:54 +08:00
parent 3eab6e8238
commit 9cc3bd0de4

View File

@ -495,7 +495,8 @@ class Monitor extends BeanModel {
const state = await Gamedig.query({
type: this.game,
host: this.hostname,
port: this.port
port: this.port,
givenPortOnly: true,
});
bean.msg = state.name;