We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5ae0e commit a7ed4c4Copy full SHA for a7ed4c4
application/frontend/src/app/core/services/dispatcher.service.ts
@@ -60,7 +60,7 @@ export class DispatcherService {
60
}
61
62
private convertProtoFieldNamesToCamelCase(obj: any, parentField: string = null): any {
63
- if (typeof obj !== 'object') {
+ if (typeof obj !== 'object' || obj === null) {
64
return obj;
65
66
if (Array.isArray(obj)) {
0 commit comments