Add missing await

d62f18b523cef28a6ab73cbe8d0485d16e342cb8

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/extensions/expressions/index.js+1 -1
@@ -938,7 +938,7 @@ async function classifyCallback(/** @type {{api: string?, prompt: string?}} */ {
938938 return '';
939939 }
940940
941941 const label = await getExpressionLabel(text, expressionApi, { customPrompt: prompt });
942942 console.debug(`Classification result for "${text}": ${label}`);
943943 return label;
944944}