Prevent future similar crashes

This commit is contained in:
Stefan Markovic 2025-01-22 19:06:55 +01:00
Родитель d4cd86d214
Коммит c99c4e913a
1 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -20,16 +20,16 @@ namespace Microsoft.PowerToys.Telemetry
try
{
registryValue = Registry.GetValue(DataDiagnosticsRegistryKey, DataDiagnosticsRegistryValueName, 0);
if (registryValue is not null)
{
return (int)registryValue == 1 ? true : false;
}
}
catch
{
}
if (registryValue is not null)
{
return (int)registryValue == 1 ? true : false;
}
return false;
}