v1.0.8 - Remove limit from subscription count
This commit is contained in:
@@ -89,3 +89,4 @@ sudo ufw delete allow 8888/tcp
|
|||||||
lsof -i :7777
|
lsof -i :7777
|
||||||
kill $(lsof -t -i :7777)
|
kill $(lsof -t -i :7777)
|
||||||
kill -9 $(lsof -t -i :7777)
|
kill -9 $(lsof -t -i :7777)
|
||||||
|
|
||||||
|
|||||||
@@ -239,7 +239,7 @@ cJSON* query_subscription_details(void) {
|
|||||||
const char* sql =
|
const char* sql =
|
||||||
"SELECT * "
|
"SELECT * "
|
||||||
"FROM active_subscriptions_log "
|
"FROM active_subscriptions_log "
|
||||||
"ORDER BY created_at DESC LIMIT 100";
|
"ORDER BY created_at DESC";
|
||||||
|
|
||||||
// DEBUG: Log the query results for debugging subscription_details
|
// DEBUG: Log the query results for debugging subscription_details
|
||||||
DEBUG_LOG("=== SUBSCRIPTION_DETAILS QUERY DEBUG ===");
|
DEBUG_LOG("=== SUBSCRIPTION_DETAILS QUERY DEBUG ===");
|
||||||
|
|||||||
@@ -12,8 +12,8 @@
|
|||||||
// Version information (auto-updated by build system)
|
// Version information (auto-updated by build system)
|
||||||
#define VERSION_MAJOR 1
|
#define VERSION_MAJOR 1
|
||||||
#define VERSION_MINOR 0
|
#define VERSION_MINOR 0
|
||||||
#define VERSION_PATCH 7
|
#define VERSION_PATCH 8
|
||||||
#define VERSION "v1.0.7"
|
#define VERSION "v1.0.8"
|
||||||
|
|
||||||
// Avoid VERSION_MAJOR redefinition warning from nostr_core_lib
|
// Avoid VERSION_MAJOR redefinition warning from nostr_core_lib
|
||||||
#undef VERSION_MAJOR
|
#undef VERSION_MAJOR
|
||||||
|
|||||||
Reference in New Issue
Block a user