You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I noticed the SendKeys commands producing inconsistent results when attempting to Stream to Discord. After further investigation I believe you need to make the following changes in your code:
Line 668: Invoke-KeyAtTarget -CMD "^{k}" -Target $Script:Config.DiscordName
CHANGE TO : Invoke-KeyAtTarget -CMD "(^k)+(^)" -Target $Script:Config.DiscordName
and
Line 669: Invoke-KeyAtTarget -CMD "+{1}" -Target $Script:Config.DiscordName
CHANGE TO : Invoke-KeyAtTarget -CMD "(+1)+(+)" -Target $Script:Config.DiscordName
These changes have resulted in a 100% success rate when attempting to trigger the add to channel function.
The text was updated successfully, but these errors were encountered:
Hello,
I noticed the SendKeys commands producing inconsistent results when attempting to Stream to Discord. After further investigation I believe you need to make the following changes in your code:
Line 668: Invoke-KeyAtTarget -CMD "^{k}" -Target $Script:Config.DiscordName
CHANGE TO : Invoke-KeyAtTarget -CMD "(^k)+(^)" -Target $Script:Config.DiscordName
and
Line 669: Invoke-KeyAtTarget -CMD "+{1}" -Target $Script:Config.DiscordName
CHANGE TO : Invoke-KeyAtTarget -CMD "(+1)+(+)" -Target $Script:Config.DiscordName
These changes have resulted in a 100% success rate when attempting to trigger the add to channel function.
The text was updated successfully, but these errors were encountered: