Amit Shah

Results 10 comments of Amit Shah

On further inspection, the reason why `getAndAttachRoute` sometimes fails, is because some workouts don't actually have a route

I was having this problem on iOS 14 (and iOS 14.0.1). I cloned the repo and built with the latest version of Xcode (Version 12.0 (12A7209)), and that seems to...

Just to be safe, I uninstalled the original app, the re-installed from the app store. I was able to import all my workouts from Health as normal. So it looks...

Sorry to post one more time, but was able to reproduce again. After a successful import (after re-installing the app) then starting a workout from the Apple Watch (workouts app)....

In case anyone read this PR previously, I've now updated it, so that heart rate data is loaded when viewing a workout only. The original implementation of saving it on...

@lpla Thanks, I'll try and tackle this soon. Do I now only need to modify the English strings file, and the rest will be updated automatically? Or should I keep...

@timfraedrich No problem at all, this was a fun thing for me to try and do. We might get lucky here, as the majority of this change doesn't need the...

I think i may have found a solution, by adding a custom attribute function ```python def convert_union_to_spec(self, field, **kwargs): ret = {} if isinstance(field, marshmallow_dataclass.union_field.Union): ret["oneOf"] = [self.field2property(f[1]) for f...

Thanks for the review. I've made the changes, however I'm unable to test them myself. I'm still pretty new to Nix and so I've been struggling through understanding how to...

In case this is useful, I've been able to create a prototype of task priorities, by overriding the Celery Task, and injecting the desired queue during `apply_async()` This allows me...