Skip to content

Commit

Permalink
Submit: fixed same content posting
Browse files Browse the repository at this point in the history
  • Loading branch information
dkildar committed Aug 30, 2023
1 parent d67578e commit c497b8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/pages/submit/api/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function usePublishApi(history: History, onClear: () => void) {
c = await bridgeApi.getPostHeader(author, permlink);
} catch (e) {}

if (c && c.author && !isThreespeak && speakPermlink === "") {
if (c && c.author) {
// create permlink with random suffix
permlink = createPermlink(title, true);
}
Expand Down

0 comments on commit c497b8c

Please sign in to comment.