fix (grammar): grammar issues #567

This commit is contained in:
Roman Zabaluev
2023-02-28 10:17:14 +03:00
committed by GitHub
parent 62b066feab
commit 4f4e833360

View File

@ -182,8 +182,8 @@ func _extractShare(req *http.Request) (Share, error) {
return Share{}, nil return Share{}, nil
} }
if Config.Get("features.share.enable").Bool() == false { if Config.Get("features.share.enable").Bool() == false {
Log.Debug("Share feature isn't enable, contact your administrator") Log.Debug("Share feature isn't enabled, contact your administrator")
return Share{}, NewError("Feature isn't enable, contact your administrator", 405) return Share{}, NewError("Feature isn't enabled, contact your administrator", 405)
} }
s, err := model.ShareGet(share_id) s, err := model.ShareGet(share_id)