Commit 54762b0e authored by root's avatar root Committed by Dietmar Maurer

add tag to network parser

Signed-off-by: 's avatarroot <aderumier@odiso.com>
parent 2bc00677
......@@ -29,6 +29,8 @@ Ext.define('PVE.Parser', { statics: {
res.bridge = match_res[1];
} else if ((match_res = p.match(/^rate=(\d+(\.\d+)?)$/)) !== null) {
res.rate = match_res[1];
} else if ((match_res = p.match(/^tag=(\d+(\.\d+)?)$/)) !== null) {
res.tag = match_res[1];
} else {
errors = true;
return false; // break
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment