Nachrichten werden als UTF-8 in die Zeiterfassung übernommen und das große Esszett wird durch das kleine ersetzt, da latin1 das nicht unterstützt.
This commit is contained in:
@@ -263,6 +263,7 @@ namespace ChatController
|
|||||||
|
|
||||||
_ContactList = new ObservableSortCollection<ContactDependencyObject>();
|
_ContactList = new ObservableSortCollection<ContactDependencyObject>();
|
||||||
|
|
||||||
|
// ToDo: Hier tritt eine NullPointer-Exception auf!
|
||||||
foreach(var contact in Chat.AddContacts())
|
foreach(var contact in Chat.AddContacts())
|
||||||
{
|
{
|
||||||
ContactList.Add(new ContactDependencyObject(contact));
|
ContactList.Add(new ContactDependencyObject(contact));
|
||||||
|
|||||||
@@ -522,6 +522,7 @@ namespace ChatController.HauptKlassen
|
|||||||
|
|
||||||
client.ExecuteAsync(request, response =>
|
client.ExecuteAsync(request, response =>
|
||||||
{
|
{
|
||||||
|
Debug.WriteLine("+++>Maximale Dateigröße erhalten");
|
||||||
var maxFileSizeAnonymous = JsonConvert.DeserializeAnonymousType(response.Content, new { file_upload_max_size = string.Empty });
|
var maxFileSizeAnonymous = JsonConvert.DeserializeAnonymousType(response.Content, new { file_upload_max_size = string.Empty });
|
||||||
|
|
||||||
var maxUploadFileSize = Convert.ToInt64(maxFileSizeAnonymous.file_upload_max_size);
|
var maxUploadFileSize = Convert.ToInt64(maxFileSizeAnonymous.file_upload_max_size);
|
||||||
|
|||||||
Reference in New Issue
Block a user