Remove extra backslash in internal preference summaries.

Resolves #13746
This commit is contained in:
rottenwheel
2024-10-26 15:26:30 -05:00
committed by Greyson Parrelli
parent b979be0cb9
commit 3d9ce5d07d

View File

@@ -427,7 +427,7 @@ class InternalSettingsFragment : DSLSettingsFragment(R.string.preferences__inter
clickPref(
title = DSLSettingsText.from("Force emoji download"),
summary = DSLSettingsText.from("Download the latest emoji set if it\\'s newer than what we have."),
summary = DSLSettingsText.from("Download the latest emoji set if it's newer than what we have."),
onClick = {
AppDependencies.jobManager.add(DownloadLatestEmojiDataJob(true))
}
@@ -435,7 +435,7 @@ class InternalSettingsFragment : DSLSettingsFragment(R.string.preferences__inter
clickPref(
title = DSLSettingsText.from("Force search index download"),
summary = DSLSettingsText.from("Download the latest emoji search index if it\\'s newer than what we have."),
summary = DSLSettingsText.from("Download the latest emoji search index if it's newer than what we have."),
onClick = {
EmojiSearchIndexDownloadJob.scheduleImmediately()
}