@@ -1369,46 +1369,46 @@ def get_booking(files_found, report_folder, seeker, wrap_text, timezone_offset):
1369
1369
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/KeyValueStorageAccountDomain*' , return_on_first_hit = True )
1370
1370
if bool (source_files ):
1371
1371
# account
1372
- get_account (source_files [ 0 ] , report_folder , timezone_offset )
1372
+ get_account (source_files , report_folder , timezone_offset )
1373
1373
1374
1374
# payment methods
1375
- get_payment_methods (source_files [ 0 ] , report_folder , timezone_offset )
1375
+ get_payment_methods (source_files , report_folder , timezone_offset )
1376
1376
1377
1377
# */Library/Application Support/AccountSettings[.plist]
1378
1378
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/AccountSettings*' , return_on_first_hit = True )
1379
1379
if bool (source_files ):
1380
1380
# account settings
1381
- get_account_settings (source_files [ 0 ] , report_folder , timezone_offset )
1381
+ get_account_settings (source_files , report_folder , timezone_offset )
1382
1382
1383
1383
# payment methods settings
1384
- get_payment_methods_settings (source_files [ 0 ] , report_folder , timezone_offset )
1384
+ get_payment_methods_settings (source_files , report_folder , timezone_offset )
1385
1385
1386
1386
# */Library/Application Support/BookingClouds[.plist]
1387
1387
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/BookingClouds*' , return_on_first_hit = True )
1388
1388
if bool (source_files ):
1389
1389
# booked
1390
- get_booked (source_files [ 0 ] , documents , report_folder , timezone_offset )
1390
+ get_booked (source_files , documents , report_folder , timezone_offset )
1391
1391
1392
1392
# */Library/Application Support/KeyValueStorageRecentsDomain[.plist]
1393
1393
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/KeyValueStorageRecentsDomain*' , return_on_first_hit = True )
1394
1394
if bool (source_files ):
1395
1395
# recently searched
1396
- get_recently_searched (source_files [ 0 ] , report_folder , timezone_offset )
1396
+ get_recently_searched (source_files , report_folder , timezone_offset )
1397
1397
1398
1398
# recently booked
1399
- get_recently_booked (source_files [ 0 ] , report_folder , timezone_offset )
1399
+ get_recently_booked (source_files , report_folder , timezone_offset )
1400
1400
1401
1401
# viewed
1402
- get_viewed (source_files [ 0 ] , report_folder , timezone_offset )
1402
+ get_viewed (source_files , report_folder , timezone_offset )
1403
1403
1404
1404
# wish lists
1405
- get_wish_lists (source_files [ 0 ] , report_folder , timezone_offset )
1405
+ get_wish_lists (source_files , report_folder , timezone_offset )
1406
1406
1407
1407
# */Library/Application Support/KeyValueStorageSharedDomain[.plist]
1408
1408
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/KeyValueStorageSharedDomain*' , return_on_first_hit = True )
1409
1409
if bool (source_files ):
1410
1410
# stored destinations
1411
- get_stored_destinations (source_files [ 0 ] , report_folder , timezone_offset )
1411
+ get_stored_destinations (source_files , report_folder , timezone_offset )
1412
1412
1413
1413
# */Library/Application Support/NotificationsModel.sqlite
1414
1414
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/NotificationsModel.sqlite*' )
@@ -1422,4 +1422,4 @@ def get_booking(files_found, report_folder, seeker, wrap_text, timezone_offset):
1422
1422
source_files = seeker .search (f'*/{ identifier } /Library/Application Support/flight_rs_v2' , return_on_first_hit = True )
1423
1423
if bool (source_files ):
1424
1424
# flights searched
1425
- get_flights_searched (source_files [ 0 ] , report_folder , timezone_offset )
1425
+ get_flights_searched (source_files , report_folder , timezone_offset )
0 commit comments