fp-device: Call identify device class method on identification

Identify on device was broken because we were calling verify device method
on devices instead of the right one.

Thank you unit tests! :)
This commit is contained in:
Marco Trevisan (Treviño) 2019-12-06 17:18:26 +01:00
parent b4c3756ab0
commit c7b7f78273

View file

@ -923,7 +923,7 @@ fp_device_identify (FpDevice *device,
g_ptr_array_ref (prints),
(GDestroyNotify) g_ptr_array_unref);
FP_DEVICE_GET_CLASS (device)->verify (device);
FP_DEVICE_GET_CLASS (device)->identify (device);
}
/**