From f2722649604117baabac5101ba1450ab4f31cc54 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 7 Dec 2025 07:40:17 -0400 Subject: [PATCH] v1.0.8 - Remove limit from subscription count --- notes.txt | 3 ++- relay.pid | 2 +- src/api.c | 2 +- src/main.h | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/notes.txt b/notes.txt index 68945d7..1aedc38 100644 --- a/notes.txt +++ b/notes.txt @@ -88,4 +88,5 @@ sudo ufw delete allow 8888/tcp lsof -i :7777 kill $(lsof -t -i :7777) -kill -9 $(lsof -t -i :7777) \ No newline at end of file +kill -9 $(lsof -t -i :7777) + diff --git a/relay.pid b/relay.pid index ac81b6a..f9907d2 100644 --- a/relay.pid +++ b/relay.pid @@ -1 +1 @@ -1505647 +1508392 diff --git a/src/api.c b/src/api.c index 29f2181..4498f93 100644 --- a/src/api.c +++ b/src/api.c @@ -239,7 +239,7 @@ cJSON* query_subscription_details(void) { const char* sql = "SELECT * " "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("=== SUBSCRIPTION_DETAILS QUERY DEBUG ==="); diff --git a/src/main.h b/src/main.h index 0fb6bee..28482b7 100644 --- a/src/main.h +++ b/src/main.h @@ -12,8 +12,8 @@ // Version information (auto-updated by build system) #define VERSION_MAJOR 1 #define VERSION_MINOR 0 -#define VERSION_PATCH 7 -#define VERSION "v1.0.7" +#define VERSION_PATCH 8 +#define VERSION "v1.0.8" // Avoid VERSION_MAJOR redefinition warning from nostr_core_lib #undef VERSION_MAJOR