re-organized configurations - II
This commit is contained in:
@ -354,4 +354,14 @@ internal abstract class Exif
|
||||
return results;
|
||||
}
|
||||
|
||||
internal static string GetMaker(Shared.Models.ExifDirectoryBase exifDirectoryBase)
|
||||
{
|
||||
string result;
|
||||
if (string.IsNullOrEmpty(exifDirectoryBase.Make))
|
||||
result = "Unknown";
|
||||
else
|
||||
result = $"{exifDirectoryBase.Make[0].ToString().ToUpper()}{exifDirectoryBase.Make[1..]}".Trim();
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user