Skip to content

Commit

Permalink
Merge pull request #1570 from crowbartools/v5
Browse files Browse the repository at this point in the history
V5.50.2
  • Loading branch information
CaveMobster committed Feb 4, 2022
2 parents df1af00 + 79f1003 commit dc9444d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions backend/chat/commands/builtin/commandManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ const commandManagement = {
{
arg: "enable",
usage: "enable [!trigger or \"phrase\"]",
description: "Disables the given custom command."
description: "Enables the given custom command."
},
{
arg: "disable",
usage: "disable [!trigger or \"phrase\"]",
description: "Enables the given custom command."
description: "Disables the given custom command."
}
]
},
Expand Down
12 changes: 6 additions & 6 deletions backend/integrations/builtin/streamelements/streamelements.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ class StreamElementsIntegration extends EventEmitter {
}
});

this._socket.on('event', (data) => {
logger.debug("Received streamelements event:", data);
if (data && data.type === "tip") {
seEventsHandler.processDonationEvent(data);
} else if (data && data.type === "follow") {
seEventsHandler.processFollowEvent(data);
this._socket.on('event', (event) => {
logger.debug("Received streamelements event:", event);
if (event && event.type === "tip") {
seEventsHandler.processDonationEvent(event.data);
} else if (event && event.type === "follow") {
seEventsHandler.processFollowEvent(event.data);
}
});
}
Expand Down
2 changes: 1 addition & 1 deletion gui/app/directives/modals/setups/remove-setup-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
...presetEffectListsService.getPresetEffectLists().map(i => i.id),
...timerService.getTimers().map(i => i.id),
...viewerRolesService.getCustomRoles().map(i => i.id),
...quickActionsService.getQuickActions().map(i => i.id)
...quickActionsService.quickActions.map(i => i.id)
].forEach(id => {
$ctrl.currentIds[id] = true;
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "firebotv5",
"version": "5.50.1",
"version": "5.50.2",
"description": "Powerful all-in-one bot for Twitch streamers.",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit dc9444d

Please sign in to comment.