From 2aacb411fc07441679f6a73f13956792919dee65 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Tue, 31 Dec 2013 22:40:35 +0000 Subject: [PATCH] Think this needs converting back to local charset here otherwise non-ASCII file uploads don't work. --- amiga/misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amiga/misc.c b/amiga/misc.c index 003a5fb6e..0ede00325 100755 --- a/amiga/misc.c +++ b/amiga/misc.c @@ -181,7 +181,7 @@ char *path_to_url(const char *path) char *filename_from_path(char *path) { - return strdup(FilePart(path)); + return ami_utf8_easy(FilePart(path)); } /**