diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mastodon/version.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/mastodon/version.rb b/lib/mastodon/version.rb index 1cff22983..ccd583e7d 100644 --- a/lib/mastodon/version.rb +++ b/lib/mastodon/version.rb @@ -21,7 +21,11 @@ module Mastodon end def suffix - '+glitch' + if source_tag + "+cafe.#{source_tag}" + else + "+cafe" + end end def to_a @@ -33,7 +37,7 @@ module Mastodon end def repository - ENV.fetch('GITHUB_REPOSITORY') { 'glitch-soc/mastodon' } + ENV.fetch('GITHUB_REPOSITORY') { 'pluralcafe/mastodon' } end def source_base_url |