Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
5rahim committed Jul 7, 2024
1 parent 1812f24 commit c88df5f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file.

## v1.7.2

- Reminder to place the executable in a dedicated folder before updating
- ⚡️ Scanner: Support more file extensions
- ⚡️ Removed third-party app startup check if the application path is not set
- 🦺 Auto update: Fixed update deleting unrelated files in the same directory
- 🦺 Media streaming: Fixed direct play using wrong content type
- 🦺 Torrent streaming: Fixed inaccurate file download percentage for batches

## v1.7.1

- 🦺 Media streaming: Fixed direct play returning the same file for different episodes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ export function useHandleMediastream(props: HandleMediastreamProps) {

const onPlayFile = (filepath: string) => {
logger("MEDIASTREAM").info("Playing file", filepath)
playerRef.current?.destroy()
playerRef.current?.destroy?.()
previousCurrentTimeRef.current = 0
setFilePath(filepath)
}
Expand Down Expand Up @@ -536,7 +536,7 @@ export function useHandleMediastream(props: HandleMediastreamProps) {
setStreamType: (type: Mediastream_StreamType) => {
logger("MEDIASTREAM").info("[setStreamType] Setting stream type", type)
setStreamType(type)
playerRef.current?.destroy()
playerRef.current?.destroy?.()
changeUrl(undefined)
},
onTimeUpdate,
Expand Down

0 comments on commit c88df5f

Please sign in to comment.