aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/www/controllers/Settings.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/juick/www/controllers/Settings.java')
-rw-r--r--src/main/java/com/juick/www/controllers/Settings.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/juick/www/controllers/Settings.java b/src/main/java/com/juick/www/controllers/Settings.java
index 4d7deece..11371ced 100644
--- a/src/main/java/com/juick/www/controllers/Settings.java
+++ b/src/main/java/com/juick/www/controllers/Settings.java
@@ -92,7 +92,7 @@ public class Settings {
@ModelAttribute User visitor,
Locale locale,
@RequestParam(required = false, defaultValue = "main") String page,
- @RequestParam(required = false) String code, ModelMap model) throws IOException {
+ @RequestParam(required = false) String code, ModelMap model) {
visitor.setAvatar(webApp.getAvatarWebPath(visitor));
List<String> pages = Arrays.asList("main", "password", "about", "auth-email", "privacy");
if (!pages.contains(page)) {
@@ -128,7 +128,7 @@ public class Settings {
protected String doPost(
@ModelAttribute User visitor,
HttpServletRequest request, HttpServletResponse response,
- @RequestParam(required = false) MultipartFile avatar,
+ @RequestParam(required = false) MultipartFile newAvatar,
ModelMap model)
throws IOException {
if (visitor.isAnonymous()) {
@@ -166,7 +166,7 @@ public class Settings {
visitor.setCountry(request.getParameter("country"));
visitor.setUrl(request.getParameter("url"));
visitor.setDescription(request.getParameter("descr"));
- String avatarTmpPath = HttpUtils.receiveMultiPartFile(avatar, storageService.getTemporaryDirectory()).getHost();
+ String avatarTmpPath = HttpUtils.receiveMultiPartFile(newAvatar, storageService.getTemporaryDirectory()).getHost();
if (StringUtils.isNotEmpty(avatarTmpPath)) {
storageService.saveAvatar(avatarTmpPath, visitor);
}