diff --git a/Changelog.md b/Changelog.md index 88291cfd597817eb4c2b69f375a5ad46e658d79f..5541af70b73d0098c84a85a178538193154ae4d7 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,7 +1,17 @@ # 0.0.2.0pre -* Fix javascripts problem with read/unread notifications. [#3656](https://github.com/diaspora/diaspora/pull/3656) +## Refactor + +* MessagesController. [#3657](https://github.com/diaspora/diaspora/pull/3657) + +## Add Features + * Add password_confirmation field to registration page. [#3647](https://github.com/diaspora/diaspora/pull/3647) + +## Bug Fixes + +* Fix error with show post Community Spotlight. [#3658](https://github.com/diaspora/diaspora/pull/3658) +* Fix javascripts problem with read/unread notifications. [#3656](https://github.com/diaspora/diaspora/pull/3656) * Fix error with open/close registrations. [#3649](https://github.com/diaspora/diaspora/pull/3649) * Fix javascripts error in invitations facebox. [#3638](https://github.com/diaspora/diaspora/pull/3638) * Fix css overflow problem in aspect dropdown on welcome page. [#3637](https://github.com/diaspora/diaspora/pull/3637) diff --git a/lib/stream/multi.rb b/lib/stream/multi.rb index 319f726c9db9288098182481ec7df4014ccb3074..19a8ec39152004f63e012bd2363516249df83ca8 100644 --- a/lib/stream/multi.rb +++ b/lib/stream/multi.rb @@ -77,6 +77,6 @@ class Stream::Multi < Stream::Base # @return [Boolean] def include_community_spotlight? - AppConfig.environment.community_spotlight.enable? && user.show_community_spotlight_in_stream? + AppConfig.settings.community_spotlight.enable? && user.show_community_spotlight_in_stream? end end