+8
-2
app/tootify.rb
+8
-2
app/tootify.rb
···
274
end
275
276
def append_link(text, link)
277
+
if link =~ /^https:\/\/bsky\.app\/profile\/.+\/post\/.+/
278
+
text << "\n" unless text.end_with?("\n")
279
+
text << "\n"
280
+
text << "RE: " + link
281
+
else
282
+
text << ' ' unless text.end_with?(' ')
283
+
text << link
284
+
end
285
end
286
287
def bsky_post_link(repo, rkey)