sferik / t-ruby

A command-line power tool for Twitter.
http://sferik.github.com/t
MIT License
5.43k stars 412 forks source link

`t does_follow <someone>` returns `t: User not found` #445

Open ishikawa000 opened 3 years ago

ishikawa000 commented 3 years ago

Hi :)

I'm a macOS user.

I'm in a problem. It is simply

$ /Users/myname/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/t-3.1.0/bin/t does_follow public_ai000ya
/Users/myname/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/t-3.1.0/bin/t: User not found.

I tested the ruby versions:

Does anyone have an idea? Help, please x(

ishikawa000 commented 3 years ago

NOTE: t follow, t timelinte, t leaders, and another commands is working well...

ishikawa000 commented 3 years ago

workaround:

  for who in $(t followings) ; do
    # NOTE: Change this on my name is changed.
    if [[ $who = 'senka_ai_vrchat' ]] ; then
      return 0
    fi
  done
  return 1

(but too heavy.)