Fix wait until ready and add avatar#1279
Merged
dajimenezriv-internxt merged 22 commits intomainfrom Feb 21, 2026
Merged
Conversation
Base automatically changed from
fix-frontend-process-issues
to
feat/2-6-6-release
February 19, 2026 12:45
egalvis27
approved these changes
Feb 20, 2026
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


What
Ticket https://inxt.atlassian.net/browse/PB-5896.
The native watcher of microsoft sends a
createevent once a file/folder is added to the cloud provider. However, if the file is a bit big, this process of copying the file into the cloud provider takes time but thecreateevent is already emitted. We added a patch waiting until we could open the file from node.js and we were looking for better ways to solve it. However, after looking at the code of@parcel/watcher, they have the same problem and the only solution was listening either in the C++ or javascript until we could create a file decriptor of that file. So, since the patch seems to be the only real solution, I kept it in the javascript to keep it simple. We have increased the time from 2s up to 60s and reduced the seconds between each check from 100ms to 500ms.Also, to match MacOS behaviour we have added the avatar of the user to the widget. Also, some simplifications have been done in the C++ code, but the result is the same.