Displays correct local modification date in RecordSyncStatusViewController

This commit is contained in:
Riley Testut 2019-01-29 15:11:25 -08:00
parent 3bd0a35c61
commit 65342e0b55

View File

@ -102,6 +102,15 @@ private extension RecordSyncStatusViewController
{
self.remoteDateLabel.text = "-"
}
if let date = record.localModificationDate
{
self.localDateLabel.text = self.dateFormatter.string(from: date)
}
else
{
self.localDateLabel.text = "-"
}
}
else
{