v1.0.8 - Remove limit from subscription count

This commit is contained in:
Your Name
2025-12-07 07:40:17 -04:00
parent ef172c8356
commit 0ccf1959c2
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 ===");