Logseq macOS app 0.10.12 has a strange URI scheme in the info.plist file inside the .app bundle

Today I found out that Logseq 0.10.12 on macOS has registered just the letters of the app name as URI in the Logseq.app/Contents/info.plist file.

XML snippet at the end of the plist file (I used VSCode as a plist viewer)

    <array>
      <dict>
        <key>CFBundleURLName</key>
        <string>logseq</string>
        <key>CFBundleURLSchemes</key>
        <array>
          <string>l</string>
          <string>o</string>
          <string>g</string>
          <string>s</string>
          <string>e</string>
          <string>q</string>
        </array>
      </dict>
    </array>

Any idea what is the purpose of this.
I am asking because some apps refuse to open logseq:// URIs.