1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

winemenubuilder: Disallow desktop integration for internet shortcuts.

This commit is contained in:
Alex Henrie 2023-10-29 15:14:32 -06:00 committed by Alexandre Julliard
parent b520a19fc2
commit 0f88c7c31f

View file

@ -1968,7 +1968,8 @@ static BOOL is_extension_banned(LPCWSTR extension)
if (!wcsicmp(extension, L".bat") ||
!wcsicmp(extension, L".com") ||
!wcsicmp(extension, L".exe") ||
!wcsicmp(extension, L".msi"))
!wcsicmp(extension, L".msi") ||
!wcsicmp(extension, L".url"))
return TRUE;
return FALSE;
}