diff options
| author | 2013-11-14 02:31:47 +0100 | |
|---|---|---|
| committer | 2013-11-14 02:31:47 +0100 | |
| commit | 4cfb8291bc1523867cb930e1103c54396a72c7e4 (patch) | |
| tree | e1c557b5d7a7c37f2bee0e85aa5b839d1e522bdb | |
| parent | ab8d86efaf03a5ea04c6d13e64a3834b0e27360a (diff) | |
| download | ideviceinstaller-4cfb8291bc1523867cb930e1103c54396a72c7e4.tar.gz ideviceinstaller-4cfb8291bc1523867cb930e1103c54396a72c7e4.tar.bz2 | |
Don't wait for a notification during uninstall as there is none sometimes
| -rw-r--r-- | src/ideviceinstaller.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/ideviceinstaller.c b/src/ideviceinstaller.c index 653b460..ec4f767 100644 --- a/src/ideviceinstaller.c +++ b/src/ideviceinstaller.c @@ -977,7 +977,7 @@ run_again:  		instproxy_uninstall(ipc, appid, NULL, status_cb);  #endif  		wait_for_op_complete = 1; -		notification_expected = 1; +		notification_expected = 0;  	} else if (list_archives_mode) {  		int xml_mode = 0;  		plist_t dict = NULL; | 
