diff --git a/VERSION.txt b/VERSION.txt index e92da973fed6..02cc04aa1bc4 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.5.60 \ No newline at end of file +5.5.61 \ No newline at end of file diff --git a/app/Models/BaseModel.php b/app/Models/BaseModel.php index 0573f1864890..d95e051757c2 100644 --- a/app/Models/BaseModel.php +++ b/app/Models/BaseModel.php @@ -174,7 +174,7 @@ class BaseModel extends Model return $this ->withTrashed() - ->company() + // ->company() ->where('id', $this->decodePrimaryKey($value))->firstOrFail(); } diff --git a/app/Models/ClientContact.php b/app/Models/ClientContact.php index 887607bd1400..264e303403fb 100644 --- a/app/Models/ClientContact.php +++ b/app/Models/ClientContact.php @@ -240,7 +240,7 @@ class ClientContact extends Authenticatable implements HasLocalePreference { return $this ->withTrashed() - ->company() + // ->company() ->where('id', $this->decodePrimaryKey($value))->firstOrFail(); } diff --git a/config/ninja.php b/config/ninja.php index ea66940ea2d4..d6f71c5cb730 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -14,8 +14,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => '5.5.60', - 'app_tag' => '5.5.60', + 'app_version' => '5.5.61', + 'app_tag' => '5.5.61', 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', ''),