This commit is contained in:
2024-05-17 01:33:39 +03:00
parent 264fc3b955
commit d29c2ba93c
11 changed files with 115 additions and 43 deletions

View File

@@ -300,4 +300,12 @@ public class TestsDatabase extends SQLiteDatabase {
}
return max_version;
}
public boolean hasActiveSapfors(){
for (ServerSapfor serverSapfor: serverSapfors.Data.values()){
if (serverSapfor.state.isActive())
return true;
}
return false;
}
}