Deepak Bhagat

Results 21 issues of Deepak Bhagat

When an admin grants the "post-readonly" permission while a user is in a read-only room, the composer stays disabled until they navigate away or restart the app. The UI doesn't...

I fixed a type-safety issue in **RoomContext** by replacing the `any` type used for the `room` property with a proper union type called **`TRoomContextRoom`**. This brings back full TypeScript checking...

I updated the `ServerAvatar` component in WorkspaceView to finally add a proper loading state and error handling. Earlier, the avatar area would just stay blank while the image was loading,...

### Describe the Bug The file `app/lib/methods/helpers/helpers.ts` has `@ts-nocheck` at the top, which disables TypeScript checking for the entire file. All 8 exported functions lack proper TypeScript type annotations, reducing...

🐛 bug

### Describe the Bug The function slugifyLikeString in app/lib/database/utils.ts (around line 14) contains a bug where the replace() result is not assigned or returned. Because of this, the string sanitization...

🐛 bug

## Proposed changes Fixed a bug in `slugifyLikeString` function where special character sanitization was not working due to dead code. ## Issue(s) Fixes #6782 ## How to test or reproduce...

This pr address the escape json body in api calls to prevent injection Closes #1067 ## Video/Screenshots ## PR Test Details **Note**: The PR will be ready for live testing...

testing

# Enable Channel Switching by Channel Name Closes #452 ## Overview This PR adds the ability to switch channels using channel names instead of requiring room IDs. Previously, users had...

nudge

The `useMediaRecorder` and `useNewMediaRecorder` hooks attach event listeners to `MediaRecorder` instances using `addEventListener`, but never remove them. When recording is started multiple times, new `MediaRecorder` instances are created while old...

bug

Several API methods in `EmbeddedChatApi.ts` manually construct JSON request bodies using template literals instead of proper serialization. When user input contains special characters such as double quotes (`"`), the generated...

bug