From fc0c9db355da1e84547e2efa03d0d227861e2ff9 Mon Sep 17 00:00:00 2001 From: Felix Boers Date: Fri, 12 Dec 2025 09:37:46 +0100 Subject: [PATCH] fix: copy the correct uuid to the clipboard --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index aee8e60..4333c01 100644 --- a/__init__.py +++ b/__init__.py @@ -43,7 +43,7 @@ def build_query_items(uuids): albert.Action( id='copy', text='Copy uuid to clipboard', - callable=lambda: albert.setClipboardText(uuid) + callable=lambda id=uuid: albert.setClipboardText(id) ) ] )