Skip to content

fix: audio attachments cannot be seeked using the progress slider - #41588

Merged
dionisio-bot[bot] merged 3 commits into
release-8.7.0from
regression/audio-attachment-seek-broken
Jul 31, 2026
Merged

fix: audio attachments cannot be seeked using the progress slider#41588
dionisio-bot[bot] merged 3 commits into
release-8.7.0from
regression/audio-attachment-seek-broken

Conversation

@abhinavkrin

@abhinavkrin abhinavkrin commented Jul 27, 2026

Copy link
Copy Markdown
Member

Proposed changes (including videos or screenshots)

Seeking an audio (or video) attachment with the progress slider snapped back to 0 and would not move. The browser reported the media as non-seekable (seekable = [[0, 0]]) despite a known duration and buffered data.

The root cause was server-side. Media requests are answered by getFileRange, whose header parser only matched fully-closed ranges (bytes=a-b). Browsers request media with open-ended ranges instead: bytes=0- on load and bytes=N- on seek. These failed to parse, so the server fell through to a gzipped 200 response instead of a 206 Partial Content, and a 200/gzip response is non-seekable by definition.

Changes:

  • Parse open-ended (bytes=N-) and suffix (bytes=-N) ranges, not just closed ones, and anchor the pattern to the bytes= unit.
  • Resolve any omitted bound against the file size per the HTTP spec, and clamp/flag out-of-range requests correctly (drives a proper 416).
  • Always advertise Accept-Ranges: bytes so browsers know ranged requests are supported.

With a valid range parsed, the server takes the 206 + range-extract branch and bypasses gzip, restoring seekability for all audio/video served from both GridFS and FileSystem storage. Added unit tests for getFileRange covering open-ended, closed, suffix, clamping, and out-of-range cases.

Issue(s)

CORE-2477

Steps to test or reproduce

  1. Send or open a room with an audio message attachment.
  2. Start playback, then drag the progress slider to a different position.
  3. Expected: playback seeks to the dragged position and continues from there (previously it snapped back to 0 and would not seek).

Further comments

Server-side change — a full Meteor server restart is required to pick it up (client HMR is not enough).

CORE-2477

Review in cubic

Summary by CodeRabbit

  • Bug Fixes
    • Audio attachments now support seeking with the playback progress slider.
    • Improved handling of byte-range requests, including open-ended, suffix, and out-of-range ranges.
    • File downloads now advertise byte-range support for more reliable media playback and navigation.

@abhinavkrin
abhinavkrin requested a review from a team as a code owner July 27, 2026 15:11
@dionisio-bot

dionisio-bot Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is ready to merge! 🎉
If you have any trouble, please check the PR guidelines

@changeset-bot

changeset-bot Bot commented Jul 27, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 2e9baee

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 3 packages
Name Type
@rocket.chat/meteor Patch
@rocket.chat/core-typings Patch
@rocket.chat/rest-typings Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai

coderabbitai Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: a0a3932b-67f4-45e2-b2a9-754a3c705c29

📥 Commits

Reviewing files that changed from the base of the PR and between 4d7df73 and 2e9baee.

📒 Files selected for processing (5)
  • .changeset/lucky-donkeys-listen.md
  • apps/meteor/server/lib/media/file-upload/config/FileSystem.ts
  • apps/meteor/server/lib/media/file-upload/config/GridFS.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
🚧 Files skipped from review as they are similar to previous changes (5)
  • apps/meteor/server/lib/media/file-upload/config/FileSystem.ts
  • .changeset/lucky-donkeys-listen.md
  • apps/meteor/server/lib/media/file-upload/config/GridFS.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
📜 Recent review details
⏰ Context from checks skipped due to timeout. (4)
  • GitHub Check: 📦 Build Packages
  • GitHub Check: CodeQL-Build
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
⚠️ CI failures not shown inline (5)

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ❌ **Correct target version** — Targeting wrong base: should target 8.8.0, but targets 8.7.0

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ❌ **Correct target version** — Targeting wrong base: should target 8.8.0, but targets 8.7.0

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ❌ **Correct target version** — Targeting wrong base: should target 8.8.0, but targets 8.7.0

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ✅ **Has milestone or project**
- ✅ **Valid PR title**
- ❌ **Correct target version** — Targeting wrong base: should target 8.8.0, but targets 8.7.0

Walkthrough

File upload range handling now supports open-ended and suffix byte ranges, clamps boundaries, and detects invalid requests. FileSystem and GridFS responses advertise byte-range support. Tests cover parsing behavior, and a patch changeset documents audio attachment seeking.

Changes

Byte Range Support

Layer / File(s) Summary
Range parsing and response headers
apps/meteor/server/lib/media/file-upload/lib/ranges.ts, apps/meteor/server/lib/media/file-upload/config/FileSystem.ts, apps/meteor/server/lib/media/file-upload/config/GridFS.ts
Range parsing supports omitted bounds and suffix ranges. getFileRange handles clamping and out-of-range cases. Upload responses set Accept-Ranges: bytes.
Range behavior validation
apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts, .changeset/lucky-donkeys-listen.md
Tests cover valid, malformed, empty, clamped, suffix, final-byte, and out-of-range requests. A patch changeset documents the audio attachment seeking fix.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Possibly related PRs

Suggested labels: type: bug

Suggested reviewers: kevlehman

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly describes the main fix: enabling audio attachment seeking with the progress slider.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches 💡 1
🛠️ Fix failing CI checks 💡
  • Fix failing CI checks

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (1)
  • CORE-2477: Request failed with status code 401

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Comment thread apps/meteor/server/lib/media/file-upload/lib/ranges.ts Outdated
Comment thread apps/meteor/server/lib/media/file-upload/lib/ranges.ts Outdated

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
apps/meteor/server/lib/media/file-upload/lib/ranges.ts (1)

11-11: 📐 Maintainability & Code Quality | 🔵 Trivial | 💤 Low value

Remove the new implementation comments.

The branches are self-explanatory and the repository guideline prohibits implementation comments. As per coding guidelines, “Avoid code comments in the implementation.”

Also applies to: 40-40

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/meteor/server/lib/media/file-upload/lib/ranges.ts` at line 11, Remove
the implementation comments describing omitted range bounds from the range
parsing branches, including both locations identified by the review. Leave the
range-handling logic unchanged.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts`:
- Around line 51-54: Extend the “flags a start at or beyond EOF as out of range”
test in getFileRange coverage with a bytes=200-100 request, and assert it
returns { outOfRange: true, start: 200, stop: 100 } to exercise the inverted
closed-range rejection path.

In `@apps/meteor/server/lib/media/file-upload/lib/ranges.ts`:
- Line 67: Ensure every file response advertises range support by setting
Accept-Ranges to bytes during general response initialization, rather than only
inside setRangeHeaders for valid Range requests. Update the relevant request
handling and add coverage for a request without a Range header, while preserving
existing range behavior.

---

Nitpick comments:
In `@apps/meteor/server/lib/media/file-upload/lib/ranges.ts`:
- Line 11: Remove the implementation comments describing omitted range bounds
from the range parsing branches, including both locations identified by the
review. Leave the range-handling logic unchanged.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: d1d6dc6f-fa34-4efb-ab00-09e7aff2f5e8

📥 Commits

Reviewing files that changed from the base of the PR and between fcf244e and 6ab2e03.

📒 Files selected for processing (2)
  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (5)
  • GitHub Check: 📦 Build Packages
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: CodeQL-Build
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
⚠️ CI failures not shown inline (1)

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**
🧰 Additional context used
📓 Path-based instructions (2)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
**/*.spec.ts

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.spec.ts: Use descriptive test names that clearly communicate expected behavior in Playwright tests
Use .spec.ts extension for test files (e.g., login.spec.ts)

Files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
🧠 Learnings (5)
📚 Learning: 2026-02-24T19:22:48.358Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/omnichannel/omnichannel-send-pdf-transcript.spec.ts:66-67
Timestamp: 2026-02-24T19:22:48.358Z
Learning: In Playwright end-to-end tests (e.g., under apps/meteor/tests/e2e/...), prefer locating elements by translated text (getByText) and ARIA roles (getByRole) over data-qa attributes. If translation values change, update the corresponding test locators accordingly. Never use data-qa locators. This guideline applies to all Playwright e2e test specs in the repository and helps keep tests robust to UI text changes and accessible semantics.

Applied to files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
📚 Learning: 2026-03-06T18:10:15.268Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39397
File: packages/gazzodown/src/code/CodeBlock.spec.tsx:47-68
Timestamp: 2026-03-06T18:10:15.268Z
Learning: In tests (especially those using testing-library/dom/jsdom) for Rocket.Chat components, the HTML <code> element has an implicit ARIA role of 'code'. Therefore, screen.getByRole('code') or screen.findByRole('code') will locate <code> elements even without a role attribute. Do not flag findByRole('code') as invalid in reviews; prefer using the implicit role instead of adding role="code" unless necessary for accessibility.

Applied to files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
  • apps/meteor/server/lib/media/file-upload/lib/ranges.ts
🔇 Additional comments (2)
apps/meteor/server/lib/media/file-upload/lib/ranges.ts (1)

5-10: LGTM!

Also applies to: 12-39, 41-54

apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts (1)

12-49: LGTM!

Also applies to: 56-59

Comment thread apps/meteor/server/lib/media/file-upload/lib/ranges.spec.ts
Comment thread apps/meteor/server/lib/media/file-upload/lib/ranges.ts Outdated
@abhinavkrin
abhinavkrin requested a review from KevLehman July 27, 2026 15:22
@ggazzo

ggazzo commented Jul 27, 2026

Copy link
Copy Markdown
Member

@abhinavkrin hey, can you mention the root cause here?

@codecov

codecov Bot commented Jul 27, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 96.42857% with 2 lines in your changes missing coverage. Please review.
✅ Project coverage is 68.45%. Comparing base (bd1a5dc) to head (2e9baee).
⚠️ Report is 1 commits behind head on release-8.7.0.

Additional details and impacted files

Impacted file tree graph

@@                Coverage Diff                @@
##           release-8.7.0   #41588      +/-   ##
=================================================
+ Coverage          68.43%   68.45%   +0.01%     
=================================================
  Files               4142     4143       +1     
  Lines             158390   158442      +52     
  Branches           28335    28278      -57     
=================================================
+ Hits              108399   108454      +55     
+ Misses             44856    44854       -2     
+ Partials            5135     5134       -1     
Flag Coverage Δ
e2e 58.90% <ø> (-0.01%) ⬇️
e2e-api 45.33% <8.69%> (-0.32%) ⬇️
unit 70.37% <96.29%> (+0.03%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@abhinavkrin

Copy link
Copy Markdown
Member Author

Root Cause #41120

The /(\d+)-(\d+)/ regex is not new - it has existed since #21463 in 2021, unchanged. So the server was never able to honor the ranges browsers actually send. What changed is the client:

  • Before: AudioAttachment.tsx rendered fuselage's <AudioPlayer src={src}> - native browser controls, which seek within the fully-buffered media and tolerate a non-seekable server response.
  • After: commit 376c9d862f (feat(audio): persistent audio player across room navigation #41120, "feat(audio): persistent audio player across room navigation") replaced it with a custom AudioPlayerControls progress slider driven by the shared MediaPlayerProvider, which seeks programmatically via audio.currentTime. Programmatic seek requires a genuinely seekable resource, so it exposed the long-dormant server bug.

@ggazzo

ggazzo commented Jul 28, 2026

Copy link
Copy Markdown
Member

what if we call it fix and add a changeset ?

@KevLehman

Copy link
Copy Markdown
Member

Yep, not a regression. The bug with range headers has existed for quite some time. The only problem is that before, the UI loaded the full audio in memory and that allowed seeking.

I'd vouch for moving this as a fix and discuss if we should target this release version or next 👀

@abhinavkrin
abhinavkrin requested a review from a team as a code owner July 28, 2026 17:55
@abhinavkrin
abhinavkrin force-pushed the regression/audio-attachment-seek-broken branch from 7a480da to 279dc95 Compare July 28, 2026 18:03
@abhinavkrin

Copy link
Copy Markdown
Member Author

I would say we can call this fix. And in the changeset we mention that range header fix.
I would still like it to be merged to release branch since - from user pov the media player is breaking which used to work before.

@abhinavkrin abhinavkrin changed the title regression: audio attachments cannot be seeked using the progress slider fix: audio attachments cannot be seeked using the progress slider Jul 28, 2026
@ricardogarim ricardogarim modified the milestones: 8.7.0, 8.8.0 Jul 30, 2026
@ricardogarim
ricardogarim changed the base branch from release-8.7.0 to develop July 30, 2026 12:54
@ricardogarim
ricardogarim force-pushed the regression/audio-attachment-seek-broken branch from 279dc95 to 107bd41 Compare July 30, 2026 13:14
@ricardogarim
ricardogarim removed the request for review from a team July 31, 2026 13:11
ricardogarim
ricardogarim previously approved these changes Jul 31, 2026
@abhinavkrin abhinavkrin added the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jul 31, 2026
@abhinavkrin
abhinavkrin dismissed KevLehman’s stale review July 31, 2026 16:46

Approved by backend. Reviewer comments addressed,

@abhinavkrin abhinavkrin removed the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot dionisio-bot Bot removed the stat: ready to merge PR tested and approved waiting for merge label Jul 31, 2026
@abhinavkrin abhinavkrin added the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot
dionisio-bot Bot added this pull request to the merge queue Jul 31, 2026
@abhinavkrin
abhinavkrin removed this pull request from the merge queue due to a manual request Jul 31, 2026
@abhinavkrin abhinavkrin removed the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot dionisio-bot Bot removed the stat: ready to merge PR tested and approved waiting for merge label Jul 31, 2026
@abhinavkrin
abhinavkrin changed the base branch from develop to release-8.7.0 July 31, 2026 16:57
@abhinavkrin
abhinavkrin dismissed ricardogarim’s stale review July 31, 2026 16:57

The base branch was changed.

@abhinavkrin
abhinavkrin requested review from a team as code owners July 31, 2026 16:57
abhinavkrin and others added 3 commits July 31, 2026 22:35
Signed-off-by: Abhinav Kumar <abhinav@avitechlab.com>
- Remove implementation comments per repo guideline
- Advertise Accept-Ranges: bytes on all upload responses, not only ranged ones
- Cover inverted closed range in getFileRange tests

Signed-off-by: Abhinav Kumar <abhinav@avitechlab.com>
@abhinavkrin
abhinavkrin force-pushed the regression/audio-attachment-seek-broken branch from 4d7df73 to 2e9baee Compare July 31, 2026 17:12
@abhinavkrin abhinavkrin modified the milestones: 8.8.0, 8.7.0 Jul 31, 2026
@abhinavkrin
abhinavkrin requested review from ricardogarim and removed request for a team and KevLehman July 31, 2026 17:13
@abhinavkrin abhinavkrin added the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jul 31, 2026
@abhinavkrin abhinavkrin removed the stat: QA assured Means it has been tested and approved by a company insider label Jul 31, 2026
@dionisio-bot dionisio-bot Bot removed the stat: ready to merge PR tested and approved waiting for merge label Jul 31, 2026
@abhinavkrin abhinavkrin added stat: ready to merge PR tested and approved waiting for merge stat: QA assured Means it has been tested and approved by a company insider labels Jul 31, 2026
@dionisio-bot
dionisio-bot Bot merged commit d823c0f into release-8.7.0 Jul 31, 2026
56 checks passed
@dionisio-bot
dionisio-bot Bot deleted the regression/audio-attachment-seek-broken branch July 31, 2026 18:15
This was referenced Jul 31, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stat: QA assured Means it has been tested and approved by a company insider stat: ready to merge PR tested and approved waiting for merge type: bug

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants