diff --git a/mobile/components/DirectoryProvider.js b/mobile/components/DirectoryProvider.js index 30f137e44e70..fc73e6a03391 100644 --- a/mobile/components/DirectoryProvider.js +++ b/mobile/components/DirectoryProvider.js @@ -79,6 +79,10 @@ DirectoryProvider.prototype = { return profile; } } + + // We are retuning null to show failure instead for throwing an error. The + // interface is called quite a bit and throwing an error is noisy. Returning + // null works with the way the interface is called [see bug 529077] return null; } };