1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00

Minor adjustments for blobs

This commit is contained in:
David Bomba 2023-07-17 09:47:14 +10:00
parent e68b45efcb
commit e0807a3a6a

View File

@ -86,7 +86,7 @@ class InvoiceController extends Controller
public function showBlob($hash)
{
$data = Cache::pull($hash);
$data = Cache::get($hash);
match($data['entity_type']){
'invoice' => $invitation = InvoiceInvitation::withTrashed()->find($data['invitation_id']),