1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

Fixes for client contacts updating (#3104)

This commit is contained in:
David Bomba 2019-11-29 21:41:07 +11:00 committed by GitHub
parent a7048ee61d
commit 4391ad087c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -287,7 +287,7 @@ class ClientController extends BaseController
$this->uploadLogo($request->file('company_logo'), $client->company, $client);
return $this->itemResponse($client);
return $this->itemResponse($client->fresh());
}

View File

@ -50,7 +50,7 @@ class QueryLogging
Log::info($request->method() . ' - ' . $request->url() . ": $count queries - " . $time);
// if($count > 50)
// Log::info($queries);
Log::info($queries);
}
}