Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 74c2639

Browse files
committed
Fixed hanging paren.
1 parent 68bf99a commit 74c2639

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/backends/activity.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@ module.exports = function(schema, options) {
77
schema.methods.activityGetActor = function() {
88
var actor = this[this.activityActorProp()];
99
if (typeof actor === 'undefined') {
10-
throw new Error(
11-
'Actor prop ' +
12-
this.activityActorProp() +
13-
' not found on model instance',
14-
);
10+
throw new Error('Actor prop ' + this.activityActorProp() + ' not found on model instance');
1511
}
1612

1713
return actor;

0 commit comments

Comments
 (0)