ソースを参照

Fix Official icon not fetched on Preview

Bubka 3 年 前
コミット
ce842f3fc0
1 ファイル変更1 行追加1 行削除
  1. 1 1
      app/Api/v1/Controllers/TwoFAccountController.php

+ 1 - 1
app/Api/v1/Controllers/TwoFAccountController.php

@@ -142,7 +142,7 @@ class TwoFAccountController extends Controller
     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);
     }