fix return of primary name

This commit is contained in:
PhilReact 2025-06-16 21:06:52 +03:00
parent 624a43555f
commit 674b547a58

View File

@ -949,7 +949,7 @@ chrome?.runtime?.onMessage.addListener((request, sender, sendResponse) => {
getNameInfoForOthers(data) getNameInfoForOthers(data)
.then((res) => { .then((res) => {
const resData = res ? res : null; const resData = res ? res : "";
sendResponse(resData); sendResponse(resData);
}) })
.catch((error) => { .catch((error) => {