|
@@ -337,9 +337,11 @@ class NCMainCommon: NSObject, PhotoEditorDelegate, NCAudioRecorderViewController
|
|
|
if metadata.ownerId != appDelegate.activeUserID {
|
|
|
// Load avatar
|
|
|
let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-" + metadata.ownerId + ".png"
|
|
|
- let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-a075-" + metadata.ownerId + ".png"
|
|
|
+ let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-alpha075-" + metadata.ownerId + ".png"
|
|
|
if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
|
|
|
cell.shared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
|
|
|
+ } else if FileManager.default.fileExists(atPath: fileNameSource) {
|
|
|
+ cell.shared.image = NCUtility.sharedInstance.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar, alpha: 0.75)
|
|
|
} else {
|
|
|
let url = appDelegate.activeUrl + k_avatar + metadata.ownerId + "/" + k_avatar_size
|
|
|
let encodedString = url.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
|
|
@@ -638,9 +640,11 @@ class NCMainCommon: NSObject, PhotoEditorDelegate, NCAudioRecorderViewController
|
|
|
if metadata.ownerId != appDelegate.activeUserID {
|
|
|
// Load avatar
|
|
|
let fileNameSource = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-" + metadata.ownerId + ".png"
|
|
|
- let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-a075-" + metadata.ownerId + ".png"
|
|
|
+ let fileNameSourceAvatar = CCUtility.getDirectoryUserData() + "/" + CCUtility.getStringUser(appDelegate.activeUser, activeUrl: appDelegate.activeUrl) + "-alpha075-" + metadata.ownerId + ".png"
|
|
|
if FileManager.default.fileExists(atPath: fileNameSourceAvatar) {
|
|
|
cell.shared.image = UIImage(contentsOfFile: fileNameSourceAvatar)
|
|
|
+ } else if FileManager.default.fileExists(atPath: fileNameSource) {
|
|
|
+ cell.shared.image = NCUtility.sharedInstance.createAvatar(fileNameSource: fileNameSource, fileNameSourceAvatar: fileNameSourceAvatar, alpha: 0.75)
|
|
|
} else {
|
|
|
let url = appDelegate.activeUrl + k_avatar + metadata.ownerId + "/" + k_avatar_size
|
|
|
let encodedString = url.addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
|