From 843c01b72eda0a0cdac961c558fdbda170732ad1 Mon Sep 17 00:00:00 2001 From: Jesse Geens Date: Thu, 20 Feb 2025 09:27:31 +0100 Subject: [PATCH] Update max length of LinkName as this was causing issues --- share/model.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/model.go b/share/model.go index 772ea54..b279f38 100644 --- a/share/model.go +++ b/share/model.go @@ -60,7 +60,7 @@ type PublicLink struct { NotifyUploadsExtraRecipients string Password string `gorm:"size:255"` // Users can give a name to a share - LinkName string `gorm:"size:64"` + LinkName string `gorm:"size:512"` } type ShareState struct {