Skip to content

Commit 12ba387

Browse files
author
Anand
committed
Dont export URL when exporting to pdf
1 parent b5bd3da commit 12ba387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ func entriesToStringArray(skipLongFields bool) (error, [][]string) {
343343

344344
if skipLongFields {
345345
// Skip Notes
346-
entryData = []string{strconv.Itoa(entry.ID), entry.Title, entry.User, entry.Url, entry.Password, entry.Timestamp.Format("2006-06-02 15:04:05")}
346+
entryData = []string{strconv.Itoa(entry.ID), entry.Title, entry.User, entry.Password, entry.Timestamp.Format("2006-06-02 15:04:05")}
347347
} else {
348348
entryData = []string{strconv.Itoa(entry.ID), entry.Title, entry.User, entry.Url, entry.Password, entry.Notes, entry.Timestamp.Format("2006-06-02 15:04:05")}
349349
}

0 commit comments

Comments
 (0)