fix incorrect sql statement, and add config switch to skip authentication for testing

This commit is contained in:
scatterflower 2021-04-26 02:16:56 -05:00
parent e44f687030
commit 51ea6d996d
2 changed files with 4 additions and 1 deletions

View File

@ -26,6 +26,9 @@ RC_ICONS = resource/icon/akashi.ico
# Enable this to print network messages tothe console # Enable this to print network messages tothe console
#DEFINES += NET_DEBUG #DEFINES += NET_DEBUG
# Enable this to skip all authentication checks
#DEFINES += SKIP_AUTH
SOURCES += src/advertiser.cpp \ SOURCES += src/advertiser.cpp \
src/aoclient.cpp \ src/aoclient.cpp \
src/aopacket.cpp \ src/aopacket.cpp \

View File

@ -156,7 +156,7 @@ QList<DBManager::BanInfo> DBManager::getRecentBans()
{ {
QList<BanInfo> return_list; QList<BanInfo> return_list;
QSqlQuery query; QSqlQuery query;
query.prepare("SELECT TOP(5) * FROM BANS ORDER BY TIME DESC"); query.prepare("SELECT * FROM BANS ORDER BY TIME DESC LIMIT 5");
query.setForwardOnly(true); query.setForwardOnly(true);
query.exec(); query.exec();
while (query.next()) { while (query.next()) {