Skip to content

Commit

Permalink
fix(core): Fix flow comparison method (#1740)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skraye authored Jul 12, 2023
1 parent 4262ab5 commit 16ac515
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private static String cleanupSource(String source) {
}

public boolean isUpdatable(Flow flow, String flowSource) {
return flow.equalsWithoutRevision(flow) &&
return this.equalsWithoutRevision(flow) &&
this.source.equals(cleanupSource(flowSource));
}

Expand Down

0 comments on commit 16ac515

Please sign in to comment.