Skip to content

Commit

Permalink
Add websocket receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
grillo-delmal committed Jul 10, 2023
1 parent 5b058c2 commit 19217c2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/session/windows/spaceedit.d
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,15 @@ private:
editingZone.sources[i] = source;
refreshOptionsList();
}
version (Phiz) {
if (uiImSelectable("Phiz Receiver")) {
if (source) source.stop();

source = new PhizAdaptor();
editingZone.sources[i] = source;
refreshOptionsList();
}
}
version (WebHookAdaptor) {
if (uiImSelectable("WebHook Receiver")) {
if (source) source.stop();
Expand Down

0 comments on commit 19217c2

Please sign in to comment.