Skip to content

Commit

Permalink
use https
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-flip committed May 13, 2024
1 parent 887bf73 commit 84c0357
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/booruHandle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export async function createPost(submission, safety: maturity, storyUrl?) {
submission.keywords.push(submission.author.id);
// upload post
const postOut = await api.post('posts/', {
tags: submission.keywords, safety, contentToken, source: submission.url,
tags: submission.keywords, safety, contentToken, source: submission.url.replace('http:', 'https:'),
});
let desc = submission.description;
if (storyUrl) {
Expand Down

0 comments on commit 84c0357

Please sign in to comment.