mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-16 03:55:41 +00:00
- Handles case where null or invalid value provided
(cherry picked from commit 41167f22c9
)
Co-authored-by: Oliver <oliver.henry.walters@gmail.com>
This commit is contained in:
committed by
GitHub
parent
6730098bac
commit
8a58bf5ffa
@ -640,8 +640,12 @@ class AppearanceSelectView(RedirectView):
|
|||||||
user_theme = common_models.ColorTheme()
|
user_theme = common_models.ColorTheme()
|
||||||
user_theme.user = request.user
|
user_theme.user = request.user
|
||||||
|
|
||||||
user_theme.name = theme
|
if theme:
|
||||||
user_theme.save()
|
try:
|
||||||
|
user_theme.name = theme
|
||||||
|
user_theme.save()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
return redirect(reverse_lazy('settings'))
|
return redirect(reverse_lazy('settings'))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user