Skip to content

Commit

Permalink
Workaround for Windows 8+ bug where the maximum length of a valid pro…
Browse files Browse the repository at this point in the history
…tocol handler identifier string appears to be 38 characters, including zero-terminator.
  • Loading branch information
win32ss committed Dec 2, 2023
1 parent 3fa8eb0 commit 2dca83d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chrome/install_static/chromium_install_modes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const InstallConstants kInstallModes[] = {
.logo_suffix = L"", // No logo suffix for the primary install mode.
.app_guid =
L"", // Empty app_guid since no integration with Google Update.
.base_app_name = L"Supermium", // A distinct base_app_name.
.base_app_id = L"Supermium", // A distinct base_app_id.
.browser_prog_id_prefix = L"SupermiumHTM", // Browser ProgID prefix.
.base_app_name = L"Supemium", // A distinct base_app_name.
.base_app_id = L"Supemium", // A distinct base_app_id.
.browser_prog_id_prefix = L"SupemiumHTM", // Browser ProgID prefix.
.browser_prog_id_description =
L"Supermium HTML Document", // Browser ProgID description.
.pdf_prog_id_prefix = L"SupermiumPDF", // PDF ProgID prefix.
Expand Down

0 comments on commit 2dca83d

Please sign in to comment.