()
| 2068 | }; |
| 2069 | |
| 2070 | const extractConversationIdFromPageUrl = function () { |
| 2071 | const matched = location.pathname.match( |
| 2072 | /\/c\/(([^/]{4,}?){4}-[^/]{4,}?)(?:\/|$)/, |
| 2073 | ); |
| 2074 | return matched ? matched[1] : ""; |
| 2075 | }; |
| 2076 | |
| 2077 | const updateEverChangingFromCurrentPage = async function () { |
| 2078 | const conversationId = extractConversationIdFromPageUrl(); |
no outgoing calls
no test coverage detected