xdg-autostart: Fix info message if Type= is not Application

The message was copy-pasted and not changed to correctly specify what
the problem was.
This commit is contained in:
Benjamin Berg 2020-06-23 10:38:08 +02:00
parent 0389f4fa81
commit 566cb7e23b

View file

@ -496,7 +496,7 @@ int xdg_autostart_service_generate_unit(
/* Nothing to do if type is not Application. */
if (!streq_ptr(service->type, "Application")) {
log_info("Not generating service for XDG autostart %s, it is hidden.", service->name);
log_info("Not generating service for XDG autostart %s, only Type=Application is supported.", service->name);
return 0;
}