(threadID: string, clearChatRoutes: boolean)
| 669 | } |
| 670 | |
| 671 | onPressNotificationForThread(threadID: string, clearChatRoutes: boolean) { |
| 672 | const threadInfo = this.props.threadInfos[threadID]; |
| 673 | if (threadInfo) { |
| 674 | this.navigateToThread(threadInfo, clearChatRoutes); |
| 675 | } else { |
| 676 | this.openThreadOnceReceived.add(threadID); |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | saveMessageInfos(rawMessageInfos: ?$ReadOnlyArray<RawMessageInfo>) { |
| 681 | if (!rawMessageInfos) { |
no test coverage detected