mikelustosa / Projeto-TInject

Projeto TInject
246 stars 132 forks source link

uTinject.Console #45

Closed HACKERLEAFFAR closed 2 years ago

HACKERLEAFFAR commented 2 years ago

Correção para o problema no carregamento da lista de todos os contatos que só carrega na primeira vez.

//Função alterada por Rafael Henrique para corrigir o carregamento da lista de contatos - 21.08.2022// procedure TFrmConsole.GetAllContacts(PIgnorarLeitura1: Boolean); begin

ReleaseConnection;

if PIgnorarLeitura1 then Exit;

if FgettingContact then Exit;

FgettingContact := True;

FrmConsole.ExecuteJS(FrmConsole_JS_GetAllContacts, False);

end;