doSendTip: pass the err back to the callback

No real users for now, but an error callback so should do that.
This commit is contained in:
infinite-persistence 2022-06-01 16:04:05 +08:00 committed by Thomas Zarebczan
parent e4214b1c1b
commit cfa59507ba

View file

@ -417,7 +417,7 @@ export function doSendTip(params, isSupport, successCallback, errorCallback, sho
}); });
if (errorCallback) { if (errorCallback) {
errorCallback(); errorCallback(err);
} }
}; };