mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Fix typo in AP transformers
This commit is contained in:
parent
130ef34a41
commit
a30575e8d3
3 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ class StatusTransformer extends Fractal\TransformerAbstract
|
|||
'type' => 'Place',
|
||||
'name' => $status->place->name,
|
||||
'longitude' => $status->place->long,
|
||||
'lattitude' => $status->place->lat,
|
||||
'latitude' => $status->place->lat,
|
||||
'country' => $status->place->country
|
||||
] : null,
|
||||
];
|
||||
|
|
|
@ -79,7 +79,7 @@ class CreateNote extends Fractal\TransformerAbstract
|
|||
'type' => 'Place',
|
||||
'name' => $status->place->name,
|
||||
'longitude' => $status->place->long,
|
||||
'lattitude' => $status->place->lat,
|
||||
'latitude' => $status->place->lat,
|
||||
'country' => $status->place->country
|
||||
] : null,
|
||||
]
|
||||
|
|
|
@ -72,7 +72,7 @@ class Note extends Fractal\TransformerAbstract
|
|||
'type' => 'Place',
|
||||
'name' => $status->place->name,
|
||||
'longitude' => $status->place->long,
|
||||
'lattitude' => $status->place->lat,
|
||||
'latitude' => $status->place->lat,
|
||||
'country' => $status->place->country
|
||||
] : null,
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue