1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-29 18:52:22 +01:00

[bug] default twitter feed is invalid

This commit is contained in:
Sylvain 2020-04-06 16:59:28 +02:00
parent bb13dc1d66
commit e3ea83fce2
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
- Changed some default values for new installations
- Updated documentation
- Fix a bug: installation without nginx does not remove the service from the docker-compose file
- Fix a bug: default twitter feed is invalid
## v4.3.3 2020 April 1st

View File

@ -278,7 +278,7 @@ end
unless Setting.find_by(name: 'twitter_name').try(:value)
setting = Setting.find_or_initialize_by(name: 'twitter_name')
setting.value = 'fab_manager'
setting.value = 'Fab_Manager'
setting.save
end