mirror of https://github.com/usememos/memos.git
fix: handle missing reaction (#4094)
* migration version * Updated test to match with current version set in version.go file * updated logic to check if migration should run for fresh install * Update test to test for version number set in version.go * fixed test * Revert "fixed test" This reverts commit4004d0e92b. * Revert "Update test to test for version number set in version.go" This reverts commitd304add5d6. * Revert "updated logic to check if migration should run for fresh install" This reverts commitb44dca2194. * Revert "Updated test to match with current version set in version.go file" This reverts commit3ad0d889b6. * Revert "migration version" This reverts commitb13cfc346a. * Added default reaction if no reation found * Fixed static check issue * Use emoji
This commit is contained in:
parent
3786fb8db2
commit
3b25a6bbec
|
|
@ -140,6 +140,7 @@ func (s *Store) GetWorkspaceGeneralSetting(ctx context.Context) (*storepb.Worksp
|
|||
const (
|
||||
// DefaultContentLengthLimit is the default limit of content length in bytes. 8KB.
|
||||
DefaultContentLengthLimit = 8 * 1024
|
||||
DefaultReaction = "👍"
|
||||
)
|
||||
|
||||
func (s *Store) GetWorkspaceMemoRelatedSetting(ctx context.Context) (*storepb.WorkspaceMemoRelatedSetting, error) {
|
||||
|
|
@ -157,6 +158,9 @@ func (s *Store) GetWorkspaceMemoRelatedSetting(ctx context.Context) (*storepb.Wo
|
|||
if workspaceMemoRelatedSetting.ContentLengthLimit < DefaultContentLengthLimit {
|
||||
workspaceMemoRelatedSetting.ContentLengthLimit = DefaultContentLengthLimit
|
||||
}
|
||||
if len(workspaceMemoRelatedSetting.Reactions) == 0 {
|
||||
workspaceMemoRelatedSetting.Reactions = append(workspaceMemoRelatedSetting.Reactions, DefaultReaction)
|
||||
}
|
||||
s.workspaceSettingCache.Store(storepb.WorkspaceSettingKey_MEMO_RELATED.String(), &storepb.WorkspaceSetting{
|
||||
Key: storepb.WorkspaceSettingKey_MEMO_RELATED,
|
||||
Value: &storepb.WorkspaceSetting_MemoRelatedSetting{MemoRelatedSetting: workspaceMemoRelatedSetting},
|
||||
|
|
|
|||
Loading…
Reference in New Issue