mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
Bug fixes from refactor
This commit is contained in:
parent
7d9d61213e
commit
43cfed0bdf
@ -99,8 +99,7 @@ class SkypeAnalyzer(general.AndroidComponentAnalyzer):
|
||||
)
|
||||
|
||||
if account_query_result is not None and account_query_result.next():
|
||||
return Account.Address(account_query_result.getString("entry_id"),
|
||||
account_query_result.getString("name"))
|
||||
return account_query_result.getString("entry_id")
|
||||
return None
|
||||
|
||||
def analyze(self, dataSource, fileManager, context):
|
||||
|
@ -345,7 +345,7 @@ class ViberMessagesParser(TskMessagesParser):
|
||||
return self.OUTGOING
|
||||
|
||||
def get_phone_number_to(self):
|
||||
return self.result_set.getString("recipients").split(","):
|
||||
return self.result_set.getString("recipients").split(",")
|
||||
|
||||
def get_message_date_time(self):
|
||||
#transform from ms to seconds
|
||||
|
@ -303,7 +303,7 @@ class WhatsAppGroupCallLogsParser(TskCallLogsParser):
|
||||
if self.get_call_direction() == self.OUTGOING_CALL:
|
||||
#group_members column stores comma seperated list of groups or single contact
|
||||
group = self.result_set.getString("group_members")
|
||||
return group.split(","):
|
||||
return group.split(",")
|
||||
return super(WhatsAppGroupCallLogsParser, self).get_phone_number_to()
|
||||
|
||||
def get_call_start_date_time(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user