Default to `false` for `getUploadEnabled`

This commit is contained in:
Jan-Erik Rediger 2020-07-21 12:35:11 +02:00
Родитель 887c3f0894
Коммит 5d9ed97fa3
4 изменённых файлов: 4 добавлений и 4 удалений

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

@ -344,7 +344,7 @@ open class GleanInternalAPI internal constructor () {
if (isInitialized()) { if (isInitialized()) {
return LibGleanFFI.INSTANCE.glean_is_upload_enabled().toBoolean() return LibGleanFFI.INSTANCE.glean_is_upload_enabled().toBoolean()
} else { } else {
return true return false
} }
} }

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

@ -306,7 +306,7 @@ namespace Mozilla.Glean
} }
else else
{ {
return true; return false;
} }
} }

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

@ -269,7 +269,7 @@ public class Glean {
if isInitialized() { if isInitialized() {
return glean_is_upload_enabled() != 0 return glean_is_upload_enabled() != 0
} else { } else {
return true return false
} }
} }

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

@ -331,7 +331,7 @@ class Glean:
if cls.is_initialized(): if cls.is_initialized():
return bool(_ffi.lib.glean_is_upload_enabled()) return bool(_ffi.lib.glean_is_upload_enabled())
else: else:
return True return False
@classmethod @classmethod
def set_experiment_active( def set_experiment_active(