Rename requestedAppId -> appId and fix receiver selector app names

This commit is contained in:
hensm
2021-04-25 09:04:10 +01:00
parent 2010af373b
commit 2d0fa4c844
5 changed files with 12 additions and 12 deletions

View File

@@ -70,7 +70,7 @@ async function getSelection (
* If the current context is running the mirroring app, pretend
* it doesn't exist because it shouldn't be launched like this.
*/
if (currentShim?.requestedAppId ===
if (currentShim?.appId ===
await options.get("mirroringAppId")) {
currentShim = undefined;
}
@@ -211,7 +211,7 @@ async function getSelection (
Array.from(StatusManager.getReceivers())
, defaultMediaType
, availableMediaTypes
, currentShim?.requestedAppId);
, currentShim?.appId);
});
}