Keyoxide: aspe:keyoxide.org:KI5WYVI3WGWSIGMOKOOOGF4JAE (think PGP key but modern and easier to use)

  • 0 Posts
  • 7 Comments
Joined 2 years ago
cake
Cake day: June 18th, 2023

help-circle





  • As best I can tell, Mull is us.spotco.fennec_dos, so on that list.
    Mulch is likely us.spotco.mulch based on mulch webview being us.spotco.mulch_wv, neither are on the list.

    My interpretation here is that Mulch uses some other system, perhaps that mentioned api or something else entirely. Therefore it needs no explicit mention and just works. It might be that it previously did not support that system, or bitwarden didn’t, but somehow now it does.
    On the other hand, Mull still requires the manual compat lsit for whatever reason, therefore now in ironfox you run into that issue. In Mull it was likely solved before you ever used it.



  • Maybe bitwarden has a hardcoded list of browsers and defaults to the app id otherwise? There could also be an override, but if not you’d have to open an issue with bitwarden and wait for them to update their list.

    Edit:
    Looking into the code there is indeed a hardcoded list.
    This file contains the code

    // Docs state that password fields cannot be reliably saved in Compat mode since they will show as
    // masked values.
    bool? compatRequest = null;
    if (Build.VERSION.SdkInt >= BuildVersionCodes.Q && fillRequest != null)
    {
        // Attempt to automatically establish compat request mode on Android 10+
        compatRequest = (fillRequest.Flags | FillRequest.FlagCompatibilityModeRequest) == fillRequest.Flags;
    }
    var compatBrowser = compatRequest ?? CompatBrowsers.Contains(parser.PackageName);
    

    I read this as:
    There are browsers that do “native” autofill and ones that do “compat”. Mull and ironfox do compat.
    This compat support is communicated on Android 10+, but either on older android or maybe if the app is built for older android (?) it won’t be communicated, thus the hard coded list.

    Doesn’t look like there is a way for users to add to this list.