stream-chat-flutter icon indicating copy to clipboard operation
stream-chat-flutter copied to clipboard

video_thumbnail package update

Open rlee1990 opened this issue 1 year ago • 1 comments

Which packages are you using?

stream_chat_flutter

On what platforms did you experience the issue?

Android

What version are you using?

4.4.1

What happened?

The video_thumbnail package has an issue that they fixed with version 0.5.2. Please update to the latest package.

Steps to reproduce

Run the application.

Supporting info to reproduce

No response

Relevant log output

No response

Flutter analyze output

No response

Flutter doctor output

No response

Code of Conduct

  • [X] I agree to follow this project's Code of Conduct

rlee1990 avatar Aug 15 '22 17:08 rlee1990

It appears that this issue still hasn't been completely fixed yet.

rlee1990 avatar Aug 15 '22 18:08 rlee1990

Hi @rlee1990 we're using version ^0.5.0, so it should use 0.5.2 if you run flutter pub upgrade Can you confirm?

imtoori avatar Aug 29 '22 09:08 imtoori

@imtoori Yes there is still an issue the issue is the video thumbnail package. There is a pull request to fix the issue but everyone is waiting for the package owner to merge it.

rlee1990 avatar Aug 29 '22 12:08 rlee1990

@rlee1990 if you lock the version in the pubspec of your project as so: video_thumbnail: 0.5.1 you're good to go. @imtoori a catch block was removed from 0.5.1 to 0.5.2 and that's what is broking the build

arthurpiccoli avatar Sep 06 '22 17:09 arthurpiccoli

was removed from 0.5.1 to 0.5.2 and that's what is broking the build

How can I do that if I am not directly using that package but I am using Stream chat.

rlee1990 avatar Sep 06 '22 18:09 rlee1990

@rlee1990 you can override the dependency and use the fixed version.

dependency_overrides:
	video_thumbnail: 0.5.1

xsahil03x avatar Sep 07 '22 12:09 xsahil03x