From b7cf758fbed204f117350bc8636fc3d610f60eb4 Mon Sep 17 00:00:00 2001 From: Ondřej Hruška Date: Tue, 25 Jul 2017 21:54:12 +0200 Subject: Fix JS errors and add back commit hash --- app/views/about/more.html.haml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'app/views/about/more.html.haml') diff --git a/app/views/about/more.html.haml b/app/views/about/more.html.haml index 11315fefa..ed491495b 100644 --- a/app/views/about/more.html.haml +++ b/app/views/about/more.html.haml @@ -60,5 +60,9 @@ .footer-links .container %p - = link_to t('about.source_code'), 'https://github.com/tootsuite/mastodon' - = " (#{@instance_presenter.version_number})" + = link_to t('about.source_code'), 'https://github.com/glitch-soc/mastodon' + - if @instance_presenter.commit_hash == "" + %strong= @instance_presenter.version_number + - else + %strong= "#{@instance_presenter.version_number}, " + %strong= "#{@instance_presenter.commit_hash}" -- cgit