From 9e0a25d49fdac80a408af5c4e187a2294778dda8 Mon Sep 17 00:00:00 2001 From: "YUKI \"Piro\" Hiroshi" Date: Thu, 9 Nov 2023 15:35:04 +0900 Subject: [PATCH] Return indented result consistently --- common/commands.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/commands.js b/common/commands.js index 86bdd08..ac96d3c 100644 --- a/common/commands.js +++ b/common/commands.js @@ -48,7 +48,8 @@ export async function copyToClipboard(tabs, format) { return ancestorsOf[tab.id].filter(ancestorId => ids.indexOf(ancestorId) > -1).length }); } - catch(_e) { + catch(error) { + console.log('failed to collect tree ancestors of tabs: ', error); } }