Skip to content

Commit

Permalink
Remove eloquence-validable artifacts bug
Browse files Browse the repository at this point in the history
  • Loading branch information
et-nik committed Feb 23, 2020
1 parent db026e3 commit 8d5cba9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/Repositories/GameRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,7 @@ public function upgradeFromRepo()
]);

$gameMod->fill($gameModData);

if ($gameMod->isValid()) {
$gameMod->save();
}
$gameMod->save();
}
}
}
Expand Down

2 comments on commit 8d5cba9

@SugarD-x
Copy link

@SugarD-x SugarD-x commented on 8d5cba9 Feb 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

By any chance could this fix bug #31?

@et-nik
Copy link
Owner Author

@et-nik et-nik commented on 8d5cba9 Feb 25, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixes #31

Please sign in to comment.