aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/ServicesStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/ServicesStore.ts')
-rw-r--r--src/stores/ServicesStore.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stores/ServicesStore.ts b/src/stores/ServicesStore.ts
index 6c7a55d6b..fd7414004 100644
--- a/src/stores/ServicesStore.ts
+++ b/src/stores/ServicesStore.ts
@@ -838,6 +838,16 @@ export default class ServicesStore extends TypedStore {
838 838
839 break; 839 break;
840 } 840 }
841
842 case 'load-available-displays': {
843 debug('Received request for capture devices from', serviceId);
844 ipcRenderer.send('load-available-displays', {
845 serviceId,
846 ...args[0],
847 });
848 break;
849 }
850
841 case 'notification': { 851 case 'notification': {
842 const { notificationId, options } = args[0]; 852 const { notificationId, options } = args[0];
843 853