@devvit/ui-renderer 0.9.10-next-2023-06-27-141b2abab.0 → 0.9.10-next-2023-06-27-8a5232914.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.
|
@@ -62,7 +62,7 @@ let DevvitCustomPost = class DevvitCustomPost extends LitElement {
|
|
|
62
62
|
call = (await this.localClient?.call('HandleUIEvent', req, this.metadata));
|
|
63
63
|
}
|
|
64
64
|
catch (e) {
|
|
65
|
-
if (!isCircuitBreaker(e)) {
|
|
65
|
+
if (!isCircuitBreaker(e) && this.localClient?.ready) {
|
|
66
66
|
console.error(e);
|
|
67
67
|
}
|
|
68
68
|
call = await __classPrivateFieldGet(this, _DevvitCustomPost_uiEventHandlerActor, "f")?.HandleUIEvent(req, this.metadata);
|
|
@@ -163,7 +163,7 @@ _DevvitCustomPost_appState = new WeakMap(), _DevvitCustomPost_lastRequest = new
|
|
|
163
163
|
__classPrivateFieldGet(this, _DevvitCustomPost_instances, "m", _DevvitCustomPost_renderPost).call(this, req, true);
|
|
164
164
|
}
|
|
165
165
|
else {
|
|
166
|
-
if (!circuitBreak) {
|
|
166
|
+
if (!circuitBreak && this.localClient?.ready) {
|
|
167
167
|
console.error(e);
|
|
168
168
|
}
|
|
169
169
|
call = await __classPrivateFieldGet(this, _DevvitCustomPost_customPostActor, "f")?.RenderPost(req, this.metadata);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devvit/ui-renderer",
|
|
3
|
-
"version": "0.9.10-next-2023-06-27-
|
|
3
|
+
"version": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
},
|
|
48
48
|
"types": "./index.d.ts",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@devvit/protos": "0.9.10-next-2023-06-27-
|
|
51
|
-
"@devvit/runtime-lite": "0.9.10-next-2023-06-27-
|
|
52
|
-
"@devvit/runtimes": "0.9.10-next-2023-06-27-
|
|
50
|
+
"@devvit/protos": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
51
|
+
"@devvit/runtime-lite": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
52
|
+
"@devvit/runtimes": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
53
53
|
"@lottiefiles/lottie-player": "1.7.1",
|
|
54
54
|
"p-queue": "7.3.4",
|
|
55
55
|
"rxjs": "7.5.7"
|
|
@@ -75,9 +75,9 @@
|
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
77
|
"@devvit/eslint-config": "0.9.9",
|
|
78
|
-
"@devvit/public-api": "0.9.10-next-2023-06-27-
|
|
78
|
+
"@devvit/public-api": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
79
79
|
"@devvit/repo-tools": "0.9.9",
|
|
80
|
-
"@devvit/tsconfig": "0.9.10-next-2023-06-27-
|
|
80
|
+
"@devvit/tsconfig": "0.9.10-next-2023-06-27-8a5232914.0",
|
|
81
81
|
"@lit/localize": "0.11.4",
|
|
82
82
|
"@reddit/baseplate": "0.14.0",
|
|
83
83
|
"@reddit/eslint-plugin-i18n-shreddit": "0.1.0",
|
|
@@ -101,5 +101,5 @@
|
|
|
101
101
|
"directory": "dist"
|
|
102
102
|
},
|
|
103
103
|
"source": "./src/index.ts",
|
|
104
|
-
"gitHead": "
|
|
104
|
+
"gitHead": "6b09dc49f63e13d01e6da5785ff61bfd7d66ff8b"
|
|
105
105
|
}
|