From eaae5050d6c6d660d9f0157f11c0944fa0a7cec8 Mon Sep 17 00:00:00 2001 From: Joan Reyero Date: Tue, 6 Sep 2022 19:50:36 +0200 Subject: [PATCH 1/2] Fixed --- backend/src/services/activityService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/activityService.ts b/backend/src/services/activityService.ts index 1806a0b085..35fd0d2658 100644 --- a/backend/src/services/activityService.ts +++ b/backend/src/services/activityService.ts @@ -185,7 +185,7 @@ export default class ActivityService { } else { // neither child nor parent is in a conversation, create one from parent const conversationTitle = await conversationService.generateTitle( - parent.crowdInfo.body, + parent.crowdInfo.title ? parent.crowdInfo.title : parent.crowdInfo.body, ActivityService.hasHtmlActivities(parent.platform), ) const conversationSettings = await ConversationSettingsService.findOrCreateDefault( From e1c92508cf7a8d460a1687b55866a9b39866b1bc Mon Sep 17 00:00:00 2001 From: Joan Reyero Date: Wed, 7 Sep 2022 10:55:20 +0200 Subject: [PATCH 2/2] Fixed typo stared -> starred --- frontend/src/i18n/en.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/i18n/en.js b/frontend/src/i18n/en.js index afb834e705..2f2a629b44 100644 --- a/frontend/src/i18n/en.js +++ b/frontend/src/i18n/en.js @@ -249,8 +249,8 @@ const en = { }, github: { fork: 'forked', - star: 'stared', - unstar: 'unstared', + star: 'starred', + unstar: 'unstarred', 'pull_request-open': 'opened a new pull request', 'pull_request-opened': 'opened a new pull request', 'pull_request-close': 'closed a pull request',