bruce-models 1.3.2 → 1.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5644,6 +5644,14 @@ var User;
5644
5644
  res(settings);
5645
5645
  }
5646
5646
  catch (e) {
5647
+ // It will complain if an app id hasn't been used yet.
5648
+ // We need to suppress that error.
5649
+ if (e && typeof e == "object") {
5650
+ if (e.ERROR && typeof e.ERROR == "object" && e.ERROR.Type == "NotFound") {
5651
+ res(null);
5652
+ return;
5653
+ }
5654
+ }
5647
5655
  rej(e);
5648
5656
  }
5649
5657
  }));