@pod-os/core 0.23.1-rc.11e4e07.0 → 0.23.1-rc.28ee385.0

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.
package/dist/index.js CHANGED
@@ -5018,7 +5018,11 @@ var ProfileGateway = class {
5018
5018
  const profile2 = this.store.get(webId).assume(WebIdProfile);
5019
5019
  const preferences = profile2.getPreferencesFile();
5020
5020
  if (preferences) {
5021
- await this.store.fetch(preferences);
5021
+ try {
5022
+ await this.store.fetch(preferences);
5023
+ } catch (error4) {
5024
+ console.warn(`Failed to fetch preferences file ${preferences}:`, error4);
5025
+ }
5022
5026
  }
5023
5027
  const publicTypeIndex2 = profile2.getPublicTypeIndex();
5024
5028
  const privateTypeIndex2 = profile2.getPrivateTypeIndex();
package/lib/index.js CHANGED
@@ -38004,7 +38004,11 @@ _:patch
38004
38004
  const profile2 = this.store.get(webId).assume(WebIdProfile);
38005
38005
  const preferences = profile2.getPreferencesFile();
38006
38006
  if (preferences) {
38007
- await this.store.fetch(preferences);
38007
+ try {
38008
+ await this.store.fetch(preferences);
38009
+ } catch (error4) {
38010
+ console.warn(`Failed to fetch preferences file ${preferences}:`, error4);
38011
+ }
38008
38012
  }
38009
38013
  const publicTypeIndex2 = profile2.getPublicTypeIndex();
38010
38014
  const privateTypeIndex2 = profile2.getPrivateTypeIndex();
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pod-os/core",
3
3
  "description": "Core module of PodOS",
4
- "version": "0.23.1-rc.11e4e07.0",
4
+ "version": "0.23.1-rc.28ee385.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./types/index.d.ts",