Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
arsnova-click-v2-backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
ARSnova
arsnova-click-v2-backend
Commits
f8eb2c5e
Commit
f8eb2c5e
authored
Aug 23, 2019
by
Christopher Mark Fullarton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes null check
parent
30794e3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/db/quiz/QuizDAO.ts
src/db/quiz/QuizDAO.ts
+1
-1
No files found.
src/db/quiz/QuizDAO.ts
View file @
f8eb2c5e
...
@@ -261,7 +261,7 @@ class QuizDAO extends AbstractDAO<Array<IQuizEntity>> {
...
@@ -261,7 +261,7 @@ class QuizDAO extends AbstractDAO<Array<IQuizEntity>> {
}
}
private
replaceTypeInformationOnLegacyQuiz
(
obj
):
object
{
private
replaceTypeInformationOnLegacyQuiz
(
obj
):
object
{
if
(
typeof
obj
!==
'
object
'
)
{
if
(
obj
===
null
||
typeof
obj
!==
'
object
'
)
{
return
obj
;
return
obj
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment