We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb3832 commit a8f9892Copy full SHA for a8f9892
src/extension/background.js
@@ -161,6 +161,11 @@ chrome.runtime.onConnect.addListener((port) => {
161
162
portsArr.push(port); // push each Reactime communication channel object to the portsArr
163
164
+ console.log('console logging port on initial connection')
165
+ console.log(port)
166
+ console.log('console logging portArray on initial connection')
167
+ console.log(portsArr)
168
+
169
// On Reactime launch: make sure RT's active tab is correct
170
if (portsArr.length > 0) {
171
portsArr.forEach((bg) => // go through each port object (each Reactime instance)
0 commit comments