1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

LibDevTools: Add missing return statement in the 'duplicateNode' handler

This commit is contained in:
Timothy Flynn 2025-03-11 10:41:47 -04:00 committed by Tim Flynn
parent 96a5b97131
commit 49b964bf19
Notes: github-actions[bot] 2025-03-12 16:49:22 +00:00

View file

@ -98,6 +98,8 @@ void WalkerActor::handle_message(StringView type, JsonObject const& message)
}
});
}
return;
}
if (type == "editTagName"sv) {