Bug fixes from refactor

This commit is contained in:
U-BASIS\dsmyda 2019-10-01 18:09:26 -04:00
parent 7d9d61213e
commit 43cfed0bdf
3 changed files with 3 additions and 4 deletions

View File

@ -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):

View File

@ -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

View File

@ -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):