Skip to content
Snippets Groups Projects
Commit 138897f4 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: better autoReplace digest checking

parent 60f74514
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ export async function confirmIfDepUpdated( ...@@ -25,7 +25,7 @@ export async function confirmIfDepUpdated(
if ( if (
newUpgrade && newUpgrade &&
newUpgrade.currentValue === newValue && newUpgrade.currentValue === newValue &&
(!newUpgrade.currentDigest || newUpgrade.currentDigest === newDigest) (!newDigest || newUpgrade.currentDigest === newDigest)
) { ) {
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment