Skip to content

Commit 7449fb5

Browse files
committed
Fixes db quota (typo)
1 parent ec3abd2 commit 7449fb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/lib/classes/cron.d/300-quota_notify.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ public function onRunJob() {
442442
else $used_ratio = 0;
443443

444444
//* send notifications only if 90% or more of the quota are used
445-
if($used_ratio > 0.9 && $user_ratio != 0) {
445+
if($used_ratio > 0.9 && $used_ratio != 0) {
446446

447447
//* could a notification be sent?
448448
$send_notification = false;

0 commit comments

Comments
 (0)