summaryrefslogtreecommitdiff
path: root/cydo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cydo.cpp')
-rw-r--r--cydo.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/cydo.cpp b/cydo.cpp
index 0347c5b..89b4323 100644
--- a/cydo.cpp
+++ b/cydo.cpp
@@ -48,8 +48,17 @@ int main(int argc, char *argv[]) {
return;
auto string(launch_data_dict_lookup(value, LAUNCH_JOBKEY_PROGRAM));
- if (string == NULL || launch_data_get_type(string) != LAUNCH_DATA_STRING)
- return;
+ if (string == NULL || launch_data_get_type(string) != LAUNCH_DATA_STRING) {
+ auto array(launch_data_dict_lookup(value, LAUNCH_JOBKEY_PROGRAMARGUMENTS));
+ if (array == NULL || launch_data_get_type(array) != LAUNCH_DATA_ARRAY)
+ return;
+ if (launch_data_array_get_count(array) == 0)
+ return;
+
+ string = launch_data_array_get_index(array, 0);
+ if (string == NULL || launch_data_get_type(string) != LAUNCH_DATA_STRING)
+ return;
+ }
auto program(launch_data_get_string(string));
if (program == NULL)