Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32212362
D13549.1765140967.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
952 B
Referenced Files
None
Subscribers
None
D13549.1765140967.diff
View Options
diff --git a/web/avatars/thread-avatar.react.js b/web/avatars/thread-avatar.react.js
--- a/web/avatars/thread-avatar.react.js
+++ b/web/avatars/thread-avatar.react.js
@@ -10,7 +10,10 @@
ThreadInfo,
RawThreadInfo,
} from 'lib/types/minimally-encoded-thread-permissions-types.js';
-import { threadTypes } from 'lib/types/thread-types-enum.js';
+import {
+ threadTypeIsPersonal,
+ threadTypeIsPrivate,
+} from 'lib/types/thread-types-enum.js';
import Avatar from './avatar.react.js';
import { useSelector } from '../redux/redux-utils.js';
@@ -31,9 +34,9 @@
);
let displayUserIDForThread;
- if (threadInfo.type === threadTypes.GENESIS_PRIVATE) {
+ if (threadTypeIsPrivate(threadInfo.type)) {
displayUserIDForThread = viewerID;
- } else if (threadInfo.type === threadTypes.GENESIS_PERSONAL) {
+ } else if (threadTypeIsPersonal(threadInfo.type)) {
displayUserIDForThread = getSingleOtherUser(threadInfo, viewerID);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Dec 7, 8:56 PM (2 h, 29 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5843501
Default Alt Text
D13549.1765140967.diff (952 B)
Attached To
Mode
D13549: [web] Update thick threads avatar logic for web
Attached
Detach File
Event Timeline
Log In to Comment