Skip to content

Commit

Permalink
fix: resolvendo erro ao chamar lista (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aristidescosta authored Feb 18, 2024
1 parent c6c18ec commit db0d1bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fontes/interpretador/interpretador-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1630,7 +1630,7 @@ export class InterpretadorBase implements InterpretadorInterface {
case 'dicionário':
return JSON.stringify(objeto.valor);
default:
return objeto.valor.paraTexto();
return objeto.valor;
}
}
}
Expand Down

0 comments on commit db0d1bc

Please sign in to comment.