update
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
All Stories
Jul 6 2024
Jul 5 2024
Found a bug with saving the thread notif settings
In D12422#355471, @inka wrote:"within" is not centered on web (vertically), can we fix this?
In D12667#358976, @ashoat wrote:On Linear, you asked whether we should check the parent or the top ancestor under GENESIS for permissions. I suggested that the top ancestor made more sense, but I probably care more about consistency with native. What do we do there?
Jul 4 2024
On Linear, you asked whether we should check the parent or the top ancestor under GENESIS for permissions. I suggested that the top ancestor made more sense, but I probably care more about consistency with native. What do we do there?
rebae before landing
address comments + rebase before landing
address comments + rebase before landing
- Actually pass sourceMessageAuthorID in based on sourceMessage
- Decided to use a UUID instead of 'ignored'. I'm pretty sure it's not used on the client anywhere, but figured it's better to avoid any risks in case it affects anything, given our tight timeline for launch
Decided to use a UUID instead of 'ignored'. I'm pretty sure it's not used on the client anywhere, but figured it's better to avoid any risks in case it affects anything, given our tight timeline for launch
rebase before landing
rebase before landing
rebase before landing
rebase before landing
rebase before landing
rebase before landing
address comments + rebase before landing
rebase before landing
rebase before landing
rebase before landing
rebase before landing
In D12657#358709, @inka wrote:Should we be able to create a subchannel of a thick thread?
I am afraid that there is a vulnerability in this diff. Basically it is possible that two createOlmSessionWithPeer promises will execute concurrently. This might lead to corrupted state. In order to mitigate that I think it is best expose this method as a context. The context would internally keep a map like [(userID, deviceID)] : Promise mapping from particular deviceID and userID to currently executing promise (if any).