diff options
Diffstat (limited to 'outboxGet.go')
-rw-r--r-- | outboxGet.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/outboxGet.go b/outboxGet.go index f656b3e..d2fabc4 100644 --- a/outboxGet.go +++ b/outboxGet.go @@ -35,7 +35,7 @@ func GetCollectionFromPath(db *sql.DB, path string) Collection { defer rows.Close() - for rows.Next(){ + for rows.Next() { var actor Actor var post ObjectBase var attachID string @@ -72,7 +72,7 @@ func GetCollectionFromPath(db *sql.DB, path string) Collection { return nColl } -func GetObjectFromPath(db *sql.DB, path string) ObjectBase{ +func GetObjectFromPath(db *sql.DB, path string) ObjectBase { var nObj ObjectBase |