Small bug with 3.3.7190 - plate solve config

Discussions, Bug Reports and Issues related to Beta versions of SharpCap
Post Reply
fly_n
Posts: 36
Joined: Wed Oct 02, 2019 7:54 pm

Small bug with 3.3.7190 - plate solve config

#1

Post by fly_n »

Hello Robin,
I stumbled upon a small bug with the 3.3.7190.
On a newly installed windows I was passing the command SharpCap.Mounts.SelectedMount.SolveAndSync() to SharpCap which ended in an unexpected crash.
Turns out I had forgotten to choose ASTAP as plate solver in the settings.

Crashing because of the config error would be my description of the bug.

Kind regards,
Norman
User avatar
admin
Site Admin
Posts: 13287
Joined: Sat Feb 11, 2017 3:52 pm
Location: Vale of the White Horse, UK
Contact:

Re: Small bug with 3.3.7190 - plate solve config

#2

Post by admin »

Hi Norman,

that method is asynchronous, so you should probably do

Code: Select all

mount.SolveAndSync().Wait()
in your code to wait for the asynchronous process to complete. You should then be able to catch any exception that is reported back from the asynchronous method to prevent the crash (try: / except:).

I will try to track down the exception and see if it can be avoided, but SharpCap uses exceptions for error handling and if that happens in an asynchronous method that is not being waited on then you can get what is called an UnobservedTaskException, which can be fatal.

cheers,

Robin
Post Reply