Skip to content

Commit

Permalink
imp - Fixed exception formatting for Android
Browse files Browse the repository at this point in the history
---

We've fixed the tip message not having newlines when listing paths.

---

Type: imp
Breaking: False
Doc Required: False
Backport Required: False
Part: 1/1
  • Loading branch information
AptiviCEO committed Jan 15, 2025
1 parent f17b9b4 commit f10b195
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/VisualCard.Extras/Converters/AndroidContactsDb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ public static Card[] GetContactsFromDb(string pathToDb)
// Check to see if the database exists
string dbObtainTip =
"\n\nMake sure that your phone is rooted before being able to obtain the contacts2.db file. " +
"Try out these paths:\n" +
$" - {knownPaths[0]} (systemwide contacts)" +
$" - {knownPaths[1]} (userspace (user 0) contacts)" +
"Try out these paths:\n\n" +
$" - {knownPaths[0]} (systemwide contacts)\n" +
$" - {knownPaths[1]} (userspace (user 0) contacts)\n" +
$" - {knownPaths[2]} (Motorola Blur)" +
"\n\nIf they don't work, consult your device's /data directory in the root file manager.";
if (!File.Exists(pathToDb))
Expand Down

0 comments on commit f10b195

Please sign in to comment.