mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
try debugging PAY-2467
This commit is contained in:
parent
c8e3c5399e
commit
a917ef2168
|
@ -79,7 +79,10 @@ export class CodeFlow {
|
|||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
const error = getAuthError(data);
|
||||
if (error) throw error;
|
||||
if (error) {
|
||||
console.error({ data, url, options });
|
||||
throw error;
|
||||
}
|
||||
|
||||
if (options.state && data.state !== options.state) {
|
||||
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
|
||||
|
|
Loading…
Reference in a new issue