-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FIX] Chats holds to load history for some time #26425
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #26425 +/- ##
===========================================
- Coverage 39.08% 39.05% -0.03%
===========================================
Files 748 749 +1
Lines 18647 18647
Branches 1424 1426 +2
===========================================
- Hits 7288 7283 -5
- Misses 11137 11141 +4
- Partials 222 223 +1
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
This pull request introduces 1 alert when merging b0eb2d8 into 1431f2e - view on LGTM.com new alerts:
|
b0eb2d8
to
2f8ebf2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we have some issues opened related to that issue, could you mention them with 'closes'?
btw, could you create some test reproducing the steps to get stuck in this situation?
thanks
6b25c5d
to
e170e38
Compare
e170e38
to
05f70f7
Compare
Already mentioned here. I added a unit test to this method, I had to use the |
…history * 'develop' of github.com:RocketChat/Rocket.Chat: Chore: Cache playwright (#26432) [FIX] Empty results on `im.list` endpoint (#26438) [IMPROVE] Upgrade nivo and React Query (#26338) Chore: Upgrade Fuselage packages to next dist-tag (#26435) Chore: Omnichannel endpoints e2e tests (#26376) Chore: Refactor UserInfo to typescript (#26323) Chore: Rewrite Location modal to React (#26196) Chore: Rewrite SaveToWebdav Modal to React Component (#24365) [IMPROVE] validateParams to accept different validators per request method (#26357) Regression: Fix spacing problem on AppStatus component (#26421) Chore: Convert client/views/account/security folder to ts (#26413) i18n: Makes the text less ambiguous (#20895) Chore: Missing some English translation keywords (#20131) Chore: Exclude private/public folders from typecheck (#26399) [NEW] Marketplace apps page new list view layout (#26181) Chore: Rewrite custom OAuth Modals to react (#26204) i18n: Manual sync from LingoHub (#26397) Chore: Options in BaseRaw model could possibly be undefined (#26395) [IMPROVE] Use single change stream to watch DB changes (#26336)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! I tested the old behaviour related to the message URLs and it doesn't seem to be happening. We should keep an eye open for it though.
…homepage * 'develop' of github.com:RocketChat/Rocket.Chat: Chore: Bypass turbo cache on `ui-contexts` (#26526) Chore: Refactor WebdavFilePicker Modal to React Component (#26422) [FIX] Chats holds to load history for some time (#26425) [FIX] Decrypt E2EE messages on thread list (#26133) Chore: Migrate AppPermissionsReviewModal from JS to TS (#26498) Chore: Convert `client/views/account/preferences` folder to ts (#26496)
…e/refactor-reportMessage-modal * 'develop' of github.com:RocketChat/Rocket.Chat: [FIX] Don't wrap wrap up notes (#26375) [IMPROVE] OTR refactoring (#24757) [FIX] Prevent VoIP issues during disconnection when network failed (#26321) Chore: Bypass turbo cache on `ui-contexts` (#26526) Chore: Refactor WebdavFilePicker Modal to React Component (#26422) [FIX] Chats holds to load history for some time (#26425) [FIX] Decrypt E2EE messages on thread list (#26133) Chore: Migrate AppPermissionsReviewModal from JS to TS (#26498)
Co-authored-by: gabriellsh <gabriel.henriques@rocket.chat>
Proposed changes (including videos or screenshots)
Issue(s)
Steps to test or reproduce
Further comments
Fix the conditional of wait until wrapper exists function, the
querySelector
returns anElement
when the selector is found andnull
when isn't and doesn't have the propertylength
. So the element was not being returned when it was already in the dom.