]> Repos - mime-chat/commitdiff
bug fixees, updated README
authorAndrew Gundersen <gundersena@xavier.edu>
Thu, 31 Mar 2022 12:36:01 +0000 (07:36 -0500)
committerAndrew Gundersen <gundersena@xavier.edu>
Thu, 31 Mar 2022 12:36:01 +0000 (07:36 -0500)
README.md
src/render/components/settings.js
src/session.js

index e9fefb08dae98b92eaf376cfcd83699b7ef91a3d..c583975cbff77bb5ae8674b4591ce7baa114832a 100644 (file)
--- a/README.md
+++ b/README.md
@@ -34,10 +34,6 @@ Prerequisites:
 *  Apple Developer Account ($99)
 *  Valid Apple Developer ID Application Certificate on keychain
 
-Clear debris from app before signing:
-
-    xattr -cr Electron.app
-
 Sign and Notarize:
 
     node notarize.js
index 8bcb99478bffe3e3ab0dc65027f6265706ab3a03..e34e1a5802cabacd86b32fa77086a318b4a9f910 100644 (file)
@@ -24,7 +24,7 @@ const Settings =
     },
 
     template: `
-        <div v-if="active" id="settings" >
+        <div v-if="active" id="settings">
 
             <button class="settings-logout-button button" @click="logout">
                 Logout
index 13932c9f31ae96f91380968566812f3173d22d3a..47980428fed0d657151470d016e28a0d3f3596b2 100644 (file)
@@ -66,9 +66,10 @@ function handleMessageQueue()
                     body: content.text
                 }).show();
 
-                if (content.category == "audio")
+                /* Ideally, we want a more native solution than this */
+                if (current.modifier == "ai" && content.category == "audio")
                 {
-                    playback(current.id, content.blob);
+                    playback(content.blob, current.id);
                 }
 
                 return;