Skip to content

Commit

Permalink
qs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoworko committed Oct 21, 2024
1 parent 80978c5 commit f4d26d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class DBProcessRepository(
newVersionId: Option[VersionId]
) = {
// Do not create activity, if the scenario is exactly the same, and there is no comment
if (oldVersionId == newVersionId && action.comment.isEmpty && action.labels.isEmpty) {
if (oldVersionId == newVersionId && action.comment.isEmpty) {
DBIO.successful(())
} else {
run(scenarioActivityRepository.addActivity(activityCreator(scenarioId, oldVersionId, newVersionId, userName)))
Expand Down

0 comments on commit f4d26d9

Please sign in to comment.