Merge pull request #2906 from chakflying/fix/duplicate-expiry-notif

Fix: Check for TLS expiry notified days smaller than target
pull/2983/head
Louis Lam 1 year ago committed by GitHub
commit 3c3a192943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1245,7 +1245,7 @@ class Monitor extends BeanModel {
if (notificationList.length > 0) {
let row = await R.getRow("SELECT * FROM notification_sent_history WHERE type = ? AND monitor_id = ? AND days = ?", [
let row = await R.getRow("SELECT * FROM notification_sent_history WHERE type = ? AND monitor_id = ? AND days <= ?", [
"certificate",
this.id,
targetDays,

Loading…
Cancel
Save