Fix updating of existing repository records

Fixes #809
This commit is contained in:
Andrew Nesbitt 2018-08-18 08:31:00 +01:00
Родитель 9fd6c51beb
Коммит cf113e0cab
1 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -221,7 +221,13 @@ class Notification < ApplicationRecord
end
if repository
repository.update_attributes(remote_repository.to_h)
repository.update_attributes({
full_name: remote_repository.full_name,
private: remote_repository.private,
owner: remote_repository.owner[:login],
github_id: remote_repository.id,
last_synced_at: Time.current
})
else
create_repository({
full_name: remote_repository.full_name,