We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48ccc96 commit 9195e4eCopy full SHA for 9195e4e
components/imgur/actions/upload-image/upload-image.mjs
@@ -34,7 +34,7 @@ export default {
34
35
const res = await this.imgur.uploadImage(base64);
36
37
- if (!res.status == 200) {
+ if (res.status !== 200) {
38
$.export("response", res);
39
if ($.flow) {
40
return $.flow.exit("Failed to upload.");
components/voilanorbert/utils.mjs renamed to components/voilanorbert/common/utils.mjs
components/voilanorbert/voilanorbert.app.mjs
@@ -1,5 +1,5 @@
1
import { axios } from "@pipedream/platform";
2
-import { objectToString } from "./utils.mjs";
+import { objectToString } from "./common/utils.mjs";
3
4
export default {
5
type: "app",
0 commit comments