v1.0.8 - Remove limit from subscription count

This commit is contained in:
Your Name
2025-12-07 07:40:17 -04:00
parent cb3171b390
commit f272264960
4 changed files with 6 additions and 5 deletions

View File

@@ -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 ===");