Skip to content

Commit 1c69a27

Browse files
author
David Blackman
committed
fix an unknown NPE in the frontend
1 parent ab0f278 commit 1c69a27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/compare.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -602,8 +602,8 @@ <h5 class="card-title" id="summary-{{key}}">{{key}}</h5>
602602
index: index + 1,
603603
total: changes.length,
604604
params: JSON.stringify(change.query.params, null, 2),
605-
oldUrl: change.old.url,
606-
newUrl: change.new.url,
605+
oldUrl: change.old?.url,
606+
newUrl: change.new?.url,
607607
oldHost: json.old.apiEnv.host,
608608
newHost: json.new.apiEnv.host,
609609
id: change.id,

0 commit comments

Comments
 (0)