policy: Fix not reseting attempts when disconnected

If the link is disconnected before any profile connects it shall still
reset the attempts as the device actually has been connected, otherwise
the number of attempts may not be respected.
diff --git a/plugins/policy.c b/plugins/policy.c
index 0330456..c9a7c84 100644
--- a/plugins/policy.c
+++ b/plugins/policy.c
@@ -714,6 +714,8 @@
 	if (!reconnect || !reconnect->reconnect)
 		return;
 
+	reconnect_reset(reconnect);
+
 	DBG("Device %s identified for auto-reconnection",
 							device_get_path(dev));