mod_http_upload_quota: Apply minor improvement

This commit is contained in:
Holger Weiss 2015-10-24 16:35:04 +02:00
parent e5eef02b25
commit d4d5200c5b
1 changed files with 2 additions and 2 deletions

View File

@ -139,13 +139,13 @@ handle_cast({handle_slot_request, #jid{user = U, server = S} = JID, Path, Size},
access_hard_quota = AccessHardQuota, access_hard_quota = AccessHardQuota,
disk_usage = DiskUsage} = State) -> disk_usage = DiskUsage} = State) ->
HardQuota = case acl:match_rule(ServerHost, AccessHardQuota, JID) of HardQuota = case acl:match_rule(ServerHost, AccessHardQuota, JID) of
Hard when is_integer(Hard), Hard >= 0 -> Hard when is_integer(Hard), Hard > 0 ->
Hard * 1024 * 1024; Hard * 1024 * 1024;
_ -> _ ->
0 0
end, end,
SoftQuota = case acl:match_rule(ServerHost, AccessSoftQuota, JID) of SoftQuota = case acl:match_rule(ServerHost, AccessSoftQuota, JID) of
Soft when is_integer(Soft), Soft >= 0 -> Soft when is_integer(Soft), Soft > 0 ->
Soft * 1024 * 1024; Soft * 1024 * 1024;
_ -> _ ->
0 0