Merge pull request #4652 from TDT-AG/pr/20201211-luci-app-firewall

luci-app-firewall: map proto '*' and 'any' to all on rule config
This commit is contained in:
Florian Eckert 2020-12-16 12:56:12 +01:00 committed by GitHub
commit b4eeb1829e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -522,6 +522,9 @@ return baseclass.extend({
}
}, this));
if (cfgvalue == '*' || cfgvalue == 'any' || cfgvalue == 'all')
cfgvalue = 'all';
return cfgvalue;
},