Lucas Moulin

Results 8 comments of Lucas Moulin

I'm facing the same issue on Ionic 2.

@chamerling I just noticed from the link you provided that the new Safari for OS X does support WebRTC. Any chance of supporting Safari now?

I believe `blob.identify_without_saving` is the root of the problem as it tries to [`find_or_build_blob`](https://github.com/rails/rails/blob/v6.1.0/activestorage/lib/active_storage/attached/changes/create_one.rb#L52) and that only accepts one of: `ActiveStorage::Blob`, `ActionDispatch::Http::UploadedFile`, `Rack::Test::UploadedFile`, `Hash` or `String`. For an unchanged attachment...

Yes, calling `model.file = model.file` throws the same error I reported here. On Rails 6.0 the assignment call succeeds but the subsequent `.save` call throws said error. That's why I...

@yogeshjain999 yes that does work as `file.blob` returns an instance of `ActiveStorage::Blob` which is one of the supported classes.

@yogeshjain999 I'm sorry if it sounded like that solves the initial issue. The discussion about `model.file = model.file` was tangential and that call can't be changed on the application level....

@apotonick good call, that does in fact solve the issue! Please let me know if/how I can help either document or fix it for good. Thank you both very much...

I'm afraid I jumped to conclusions too soon. Adding `feature Sync::SkipUnchanged` does in fact prevent that failure but at the cost of ignoring any changed files so it seems that...