Skip to content

Commit

Permalink
silly bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tconfrey committed Mar 26, 2024
1 parent 84cc5a8 commit abc7717
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/bt.js
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ function tabJoinedTG(data) {

const tabId = data.tabId;
const tgId = data.groupId;
const tabNode = BTAppNode.findFromTab(tabId);
let tabNode = BTAppNode.findFromTab(tabId);
const topicNode = BTAppNode.findFromGroup(tgId);
if (tabNode || !topicNode) return; // n/a || don't care
const tab = data.tab;
Expand Down
2 changes: 1 addition & 1 deletion versions/Release-Candidate/app/bt.js
Original file line number Diff line number Diff line change
Expand Up @@ -954,7 +954,7 @@ function tabJoinedTG(data) {

const tabId = data.tabId;
const tgId = data.groupId;
const tabNode = BTAppNode.findFromTab(tabId);
let tabNode = BTAppNode.findFromTab(tabId);
const topicNode = BTAppNode.findFromGroup(tgId);
if (tabNode || !topicNode) return; // n/a || don't care
const tab = data.tab;
Expand Down

0 comments on commit abc7717

Please sign in to comment.