We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 339dc27 commit 5cd9f78Copy full SHA for 5cd9f78
get-log-digest.php
@@ -36,6 +36,12 @@
36
$end_log_id = $start_log_id - LOG_WINDOW_SIZE;
37
}
38
39
+// Prevent potential infinite loop if no log entries are found in provided time window
40
+if (is_null($start_log_id) || is_null($min_log_id)) {
41
+ echo "No activity found in the provided time window, please expand your search.";
42
+ exit();
43
+}
44
+
45
$message_subtrings = $digestLog::createLikeStatements();
46
47
// NOTE: probably don't need EM id or project_id
0 commit comments