Skip to content

Commit 2c51c6c

Browse files
committed
Merge branch 'bugfix/github-check-repo-available' of github.com:CrowdDotDev/crowd.dev into bugfix/github-check-repo-available
2 parents c2c16dd + 3e2f26c commit 2c51c6c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/src/services/activityService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default class ActivityService {
185185
} else {
186186
// neither child nor parent is in a conversation, create one from parent
187187
const conversationTitle = await conversationService.generateTitle(
188-
parent.crowdInfo.body,
188+
parent.crowdInfo.title ? parent.crowdInfo.title : parent.crowdInfo.body,
189189
ActivityService.hasHtmlActivities(parent.platform),
190190
)
191191
const conversationSettings = await ConversationSettingsService.findOrCreateDefault(

frontend/src/i18n/en.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ const en = {
249249
},
250250
github: {
251251
fork: 'forked',
252-
star: 'stared',
253-
unstar: 'unstared',
252+
star: 'starred',
253+
unstar: 'unstarred',
254254
'pull_request-open': 'opened a new pull request',
255255
'pull_request-opened': 'opened a new pull request',
256256
'pull_request-close': 'closed a pull request',

0 commit comments

Comments
 (0)