diff --git a/pastebin.go b/pastebin.go index 601d52b..f0315a2 100644 --- a/pastebin.go +++ b/pastebin.go @@ -108,6 +108,9 @@ func Sha1(paste string) string { // DurationFromExpiry takes the expiry in string format and returns the duration // that the paste will exist for func DurationFromExpiry(expiry string) time.Duration { + if expiry == "" { + expiry = "P20Y" + } dura, err := duration.FromString(expiry) // dura is time.Duration type Check(err)