Skip to content

Commit

Permalink
v5.10.35
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Oct 12, 2024
1 parent 2927611 commit 6196247
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.10.34
5.10.35
2 changes: 1 addition & 1 deletion app/Http/Controllers/ExpenseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ public function edocument(EDocumentRequest $request)
$user = auth()->user();

foreach ($request->file("documents") as $file) {
ImportEDocument::dispatch($file->get(), $file->getClientOriginalName(), $request->file("documents")->getMimeType(), $user->company());
ImportEDocument::dispatch($file->get(), $file->getClientOriginalName(), $file->getMimeType(), $user->company());
}

return response()->json(['message' => 'Processing....'], 200);
Expand Down
4 changes: 2 additions & 2 deletions config/ninja.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.10.34'),
'app_tag' => env('APP_TAG', '5.10.34'),
'app_version' => env('APP_VERSION', '5.10.35'),
'app_tag' => env('APP_TAG', '5.10.35'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),
Expand Down

0 comments on commit 6196247

Please sign in to comment.