mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Fix Microphone perms
This commit is contained in:
parent
40264c745a
commit
ce7699bb4c
1 changed files with 4 additions and 0 deletions
4
main.js
4
main.js
|
@ -102,6 +102,10 @@ app.whenReady().then(() => {
|
||||||
// Approves the permissions request
|
// Approves the permissions request
|
||||||
callback(true);
|
callback(true);
|
||||||
}
|
}
|
||||||
|
if (permission === "microphone") {
|
||||||
|
// Approves the permissions request
|
||||||
|
callback(true);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
app.on("activate", function () {
|
app.on("activate", function () {
|
||||||
// On macOS it's common to re-create a window in the app when the
|
// On macOS it's common to re-create a window in the app when the
|
||||||
|
|
Loading…
Reference in a new issue