2 Commits 1d83e79423 ... 0819ed3987

Author SHA1 Message Date
  Jaidyn Ann 0819ed3987 Tab-delimited output, rather than JSON 10 months ago
  Jaidyn Ann 1d83e79423 Tab-delimited output, rather than JSON 10 months ago
1 changed files with 1 additions and 1 deletions
  1. 1 1
      sources/mastodon.sh

+ 1 - 1
sources/mastodon.sh

@@ -76,7 +76,7 @@ bookmarks_parse() {
 	for bookmark in $bookmark_lines; do
 		local url="$(echo "$bookmark" | awk -F '\t' '{print $1}')"
 		local date="$(echo "$bookmark" | awk -F '\t' '{print $4}')"
-		local desc="$(echo "$bookmark" | bookmark_desc)"
+		local desc="$(echo "$bookmark" | bookmark_line_desc)"
 		local title="$(echo "$desc" | head -c40)"
 		printf '%s\t%s\t%s\t%s\n' "$url" "$title" "$desc" "$date"
     done