mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
Reverse null.
This commit is contained in:
parent
ad18e04ad6
commit
a2889ea4c4
@ -92,7 +92,7 @@ class LoginController extends Controller
|
||||
|
||||
// check for presence of currency:
|
||||
$currency = TransactionCurrency::where('code','EUR')->first();
|
||||
if(!is_null($currency)) {
|
||||
if(is_null($currency)) {
|
||||
$message = 'Firefly III could not find the EURO currency. This is a strong indication the database has not been initialized correctly. Did you follow the installation instructions?';
|
||||
return view('error',compact('message'));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user