Skip to content

Commit 30ce8c1

Browse files
author
Daniel Herzog
committed
DFL-3604: Network related exception on experimental
1 parent 0523bd3 commit 30ce8c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/network/network_service.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,8 @@ cls.NetworkLogger = function()
266266
// Guess what the matching entry is from here. This is normally much harder,
267267
// but we only want to do this workaround in this easy case anyway.
268268
var matching_entry = ctx.get_entries_with_res_id(data.resourceID)[0];
269-
if (matching_entry.events.last &&
269+
if (matching_entry &&
270+
matching_entry.events.last &&
270271
matching_entry.events.last.name == "urlredirect")
271272
{
272273
remove_from_allocated_after_update = true;

0 commit comments

Comments
 (0)