feat: show call participants in room list (Discord-style)
Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
diff --git a/lib/parse.js b/lib/parse.js
|
||||
index b5e7496a28d0664933a14f4fcd89682c8a349d3f..a5de9d1edb8ce22ed93ab1ed96493d223013c296 100644
|
||||
--- a/lib/parse.js
|
||||
+++ b/lib/parse.js
|
||||
@@ -63,7 +63,7 @@ function invariant(test, message) {
|
||||
*/
|
||||
|
||||
function parse (xml) {
|
||||
- var doc = new DOMParser().parseFromString(xml);
|
||||
+ var doc = new DOMParser().parseFromString(xml, 'text/xml');
|
||||
invariant(
|
||||
doc.documentElement.nodeName === 'plist',
|
||||
'malformed document. First element should be <plist>'
|
||||
@@ -131,7 +131,7 @@ function parsePlistXML (node) {
|
||||
if (counter % 2 === 1) {
|
||||
new_obj[key] = '';
|
||||
}
|
||||
-
|
||||
+
|
||||
return new_obj;
|
||||
|
||||
} else if (node.nodeName === 'array') {
|
||||
Reference in New Issue
Block a user