summary refs log tree commit diff stats
path: root/summarize/wikipedia.go
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-22 14:05:00 +0530
committerAndinus <andinus@nand.sh>2020-03-22 14:05:00 +0530
commite0900e1cfe0b2a7961ed690dfcce62364e1c88a4 (patch)
tree232cad5f3aa1010dfe087598b0b9e5c4fadcfa1a /summarize/wikipedia.go
parent9fde6e5a892b228c2d64af05b02380847573c832 (diff)
downloadindus-e0900e1cfe0b2a7961ed690dfcce62364e1c88a4.tar.gz
Add version command & use extract instead of description v0.1.0
Description is nice but most of the words that I lookup have better
explanation in extract.
Diffstat (limited to 'summarize/wikipedia.go')
-rw-r--r--summarize/wikipedia.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/summarize/wikipedia.go b/summarize/wikipedia.go
index c4a5050..f74c753 100644
--- a/summarize/wikipedia.go
+++ b/summarize/wikipedia.go
@@ -17,8 +17,8 @@ func Wikipedia(w fetch.Wiki) (notification.Notif, error) {
 	// with other page types to get summary.
 	switch w.Type {
 	case "standard":
-		n.Title = fmt.Sprintf("%s - Wikipedia", w.Title)
-		n.Message = w.Description
+		n.Title = fmt.Sprintf("%s", w.Title)
+		n.Message = w.Extract
 	default:
 		err = fmt.Errorf("Summarizing wikipedia response failed")
 	}