Skip to content

Commit d399c8e

Browse files
authoredDec 13, 2024··
Merge pull request #4714 from coralproject/develop
v9.6.1
2 parents 17cc296 + 5e84459 commit d399c8e

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed
 

‎client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coralproject/talk",
3-
"version": "9.6.0",
3+
"version": "9.6.1",
44
"author": "The Coral Project",
55
"homepage": "https://coralproject.net/",
66
"sideEffects": [

‎client/src/core/client/stream/tabs/Comments/Stream/AllCommentsTab/AllCommentsTabContainer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export const AllCommentsTabContainer: FunctionComponent<Props> = ({
200200
if (visible && isNotFirstLoad && live) {
201201
setShowCommentRefreshButton(true);
202202
}
203-
}, [visible, setShowCommentRefreshButton, live, isNotFirstLoad]);
203+
}, [visible, setShowCommentRefreshButton, live]);
204204

205205
useEffect(() => {
206206
if (!topOfCommentsInView && allCommentsInView) {

‎common/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "common",
3-
"version": "9.6.0",
3+
"version": "9.6.1",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

‎config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "common",
3-
"version": "9.6.0",
3+
"version": "9.6.1",
44
"description": "",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

‎server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coralproject/talk",
3-
"version": "9.6.0",
3+
"version": "9.6.1",
44
"author": "The Coral Project",
55
"homepage": "https://coralproject.net/",
66
"sideEffects": [

‎server/src/core/server/app/middleware/passport/strategies/verifiers/sso.ts

+1
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ export async function findOrCreateSSOUser(
201201
// not affected by this update feature.
202202
role: role || user.role,
203203
avatar,
204+
ssoURL: url,
204205
},
205206
lastIssuedAt
206207
);

‎server/src/core/server/models/user/user.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1317,6 +1317,7 @@ export interface UpdateUserInput {
13171317
badges?: string[];
13181318
role?: GQLUSER_ROLE;
13191319
avatar?: string;
1320+
ssoURL?: string;
13201321
}
13211322

13221323
export async function updateUserFromSSO(

0 commit comments

Comments
 (0)
Please sign in to comment.