lib/onebox/engine/github_issue_onebox.rb in onebox-1.9.13 vs lib/onebox/engine/github_issue_onebox.rb in onebox-1.9.14
- old
+ new
@@ -32,10 +32,10 @@
short_content += "..." if content_words.length > max_words
ulink = URI(link)
{
link: @url,
- title: "Issue: " + @raw["title"],
+ title: @raw["title"],
content: short_content.gsub("<br>", "\n"),
labels: @raw["labels"],
user: @raw['user'],
created_at: @raw['created_at'].split("T")[0], #get only date for now
closed_at: (@raw['closed_at'].nil? ? "" : @raw['closed_at'].split("T")[0]),