From 2ce0e8045b313f3c7c6573cf86186efedc55af2c Mon Sep 17 00:00:00 2001 From: Rich Date: Tue, 5 May 2015 15:55:29 +0100 Subject: [PATCH] Change branding on atom feeds Minor consistency change ( from Diaspora to diaspora* ) closes #5929 --- Changelog.md | 1 + app/views/users/public.atom.builder | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index c68785197..cd58b1ba8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -20,6 +20,7 @@ * Fix code reloading for PostPresenter [#5888](https://github.com/diaspora/diaspora/pull/5888) * Fix closing account from mobile view [#5913](https://github.com/diaspora/diaspora/pull/5913) * Allow using common custom template for desktop & mobile landing page [#5915](https://github.com/diaspora/diaspora/pull/5915) +* Use correct branding in Atom feed [#5929](https://github.com/diaspora/diaspora/pull/5929) ## Features * Hide post title of limited post in comment notification email [#5843](https://github.com/diaspora/diaspora/pull/5843) diff --git a/app/views/users/public.atom.builder b/app/views/users/public.atom.builder index 8dfd609d1..c2720ceb6 100644 --- a/app/views/users/public.atom.builder +++ b/app/views/users/public.atom.builder @@ -10,7 +10,7 @@ atom_feed({'xmlns:thr' => 'http://purl.org/syndication/thread/1.0', feed.tag! :generator, 'Diaspora', :uri => "#{AppConfig.pod_uri.to_s}" feed.title "#{@user.name}'s Public Feed" - feed.subtitle "Updates from #{@user.name} on Diaspora" + feed.subtitle "Updates from #{@user.name} on diaspora*" feed.logo "#{@user.image_url(:thumb_small)}" feed.updated @posts[0].created_at if @posts.length > 0 feed.tag! :link, :rel => 'avatar', :type => 'image/jpeg', 'media:width' => '100',