Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33258208
D13267.1768591651.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D13267.1768591651.diff
View Options
diff --git a/native/chat/message-list.react.js b/native/chat/message-list.react.js
--- a/native/chat/message-list.react.js
+++ b/native/chat/message-list.react.js
@@ -197,7 +197,10 @@
const { messageListData, startReached } = this.props;
const footer = startReached ? this.ListFooterComponent : undefined;
let relationshipPrompt = null;
- if (this.props.threadInfo.type === threadTypes.GENESIS_PERSONAL) {
+ if (
+ this.props.threadInfo.type === threadTypes.GENESIS_PERSONAL ||
+ this.props.threadInfo.type === threadTypes.PERSONAL
+ ) {
relationshipPrompt = (
<RelationshipPrompt
pendingPersonalThreadUserInfo={
diff --git a/web/chat/chat-message-list.react.js b/web/chat/chat-message-list.react.js
--- a/web/chat/chat-message-list.react.js
+++ b/web/chat/chat-message-list.react.js
@@ -294,7 +294,10 @@
const messages = messageListData.map(this.renderItem);
let relationshipPrompt = null;
- if (threadInfo.type === threadTypes.GENESIS_PERSONAL) {
+ if (
+ threadInfo.type === threadTypes.GENESIS_PERSONAL ||
+ threadInfo.type === threadTypes.PERSONAL
+ ) {
const otherMembers = threadOtherMembers(
threadInfo.members,
this.props.viewerID,
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jan 16, 7:27 PM (7 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5938526
Default Alt Text
D13267.1768591651.diff (1 KB)
Attached To
Mode
D13267: [web][native] Show relationship prompt in thick PERSONAL threads
Attached
Detach File
Event Timeline
Log In to Comment