Skip to content

Commit

Permalink
fix: add if post is success
Browse files Browse the repository at this point in the history
  • Loading branch information
azu committed Feb 7, 2024
1 parent 82798dd commit 916f511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ class App extends React.Component {
notie.alert({ type: "info", text: "Already posted", time: 2 });
return;
}
lruPostSet.add(hash);
const services = serviceManger.selectServices(getEnabledServiceIdentifiers());
console.log("services", services);
console.log("postData", postData);
Expand All @@ -111,6 +110,7 @@ class App extends React.Component {
if (this.editor) {
this.editor.reset();
}
lruPostSet.add(hash);
});
}

Expand Down

0 comments on commit 916f511

Please sign in to comment.