mirror of https://github.com/vector-im/riot-web
Actually even out brackets
parent
8d1aea5b2e
commit
54458f1438
|
@ -85,7 +85,7 @@ function getFormatStrings(str) {
|
||||||
const formatStrings = new Set();
|
const formatStrings = new Set();
|
||||||
|
|
||||||
let match;
|
let match;
|
||||||
while ( (match = formatStringRe.exec(str) ) !== null) {
|
while ( (match = formatStringRe.exec(str)) !== null ) {
|
||||||
const placeholder = match[1]; // Minus the leading '%'
|
const placeholder = match[1]; // Minus the leading '%'
|
||||||
if (placeholder === '%') continue; // Literal % is %%
|
if (placeholder === '%') continue; // Literal % is %%
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue