Avoid the multiple queries for Gamedig monitor

pull/2663/head
Louis Lam 2023-01-25 00:19:54 +08:00
parent 3eab6e8238
commit 9cc3bd0de4
1 changed files with 2 additions and 1 deletions

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;