Eric McConkie
Eric McConkie
so sorry to bring this back to life, but i'm curious if there is a way to send MMS in the background but NOT be the default app? The library...
@waterdoo i'm not clear how you made that fix. Can you provide more details?
out of the box, is there a way to ignore slash commands? in my case, i've an app that handles slash commands from the slack API, but i also have...
ahh nevermind... ``` match /^\/(.*)/ do |client, data, match| cmd = data['text'] client.say(channel: data.channel, text: "ignoring slash commands: #{cmd}") end ``` that'll work !
i've made a branch to first test if this could suffice for the functionality you note. https://github.com/mcconkiee/EMHint/tree/passthrough Look at the example and see the new protocol method that allows a...
ok.... Here's how i fixed this: 1. remove the dependency and get flutter app to compile as was before installing `speech_recognition` 2. In XCode, update the target to latest Swift...
> I was able to fix it by manually generating a token at: `https://api.slack.com/custom-integrations/legacy-tokens` and replacing the line `opts.apiToken = match[1];` in `lib/slack.js` with the token itself and commenting out...
is that fix going to fold into master???
+1 - i'd like to know how to do this too