Fix Official icon not fetched on Preview

This commit is contained in:
Bubka 2022-07-30 21:23:54 +02:00
parent f7ac1e96c3
commit ce842f3fc0

View File

@ -142,7 +142,7 @@ public function reorder(TwoFAccountReorderRequest $request)
public function preview(TwoFAccountUriRequest $request)
{
$twofaccount = new TwoFAccount;
$twofaccount->fillWithURI($request->uri, $request->custom_otp === TwoFAccount::STEAM_TOTP, true);
$twofaccount->fillWithURI($request->uri, $request->custom_otp === TwoFAccount::STEAM_TOTP);
return new TwoFAccountStoreResource($twofaccount);
}