fix an issue where 100 bytes string won't pass the display name length test

pull/891/head
Ryan ZHAO 9 months ago
parent 8bd418f289
commit 572e5ceb7d

@ -42,7 +42,7 @@ class GlobalSearchViewController: BaseVC, LibSessionRespondingViewController, UI
// MARK: - Variables
private lazy var defaultSearchResults: SearchResultData = {
let nonalphabeticNameTitle: String = "#"
let nonalphabeticNameTitle: String = "#" // stringlint:disable
let contacts: [SessionThreadViewModel] = Storage.shared.read { db -> [SessionThreadViewModel]? in
try SessionThreadViewModel
.defaultContactsQuery(userPublicKey: getUserHexEncodedPublicKey(db))

@ -105,7 +105,7 @@ struct DisplayNameScreen: View {
error = "vc_display_name_display_name_missing_error".localized()
return
}
guard !ProfileManager.isToLong(profileName: displayName) else {
guard !ProfileManager.isTooLong(profileName: displayName) else {
error = "vc_display_name_display_name_too_long_error".localized()
return
}

@ -190,7 +190,7 @@ class SettingsViewModel: SessionTableViewModel, NavigationItemSource, Navigatabl
)
return
}
guard !ProfileManager.isToLong(profileName: updatedNickname) else {
guard !ProfileManager.isTooLong(profileName: updatedNickname) else {
self?.transitionToScreen(
ConfirmationModal(
info: ConfirmationModal.Info(

@ -28,11 +28,15 @@ public struct ProfileManager {
// MARK: - Functions
public static func isToLong(profileName: String) -> Bool {
return (profileName.utf8CString.count > LibSession.libSessionMaxNameByteLength)
public static func isTooLong(profileName: String) -> Bool {
///String.utf8CString will include the null terminator (Int8)0 as the end of string buffer.
///When the string is exactly 100 bytes String.utf8CString.count will be 101.
///However in LibSession, the Contact C API supports 101 characters in order to account for
///the null terminator - char name[101]. So it is OK to use String.utf8.count
return (profileName.utf8.count > LibSession.libSessionMaxNameByteLength)
}
public static func isToLong(profileUrl: String) -> Bool {
public static func isTooLong(profileUrl: String) -> Bool {
return (profileUrl.utf8CString.count > LibSession.libSessionMaxProfileUrlByteLength)
}

Loading…
Cancel
Save