mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-12 17:44:31 +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',
|
'type' => 'Place',
|
||||||
'name' => $status->place->name,
|
'name' => $status->place->name,
|
||||||
'longitude' => $status->place->long,
|
'longitude' => $status->place->long,
|
||||||
'lattitude' => $status->place->lat,
|
'latitude' => $status->place->lat,
|
||||||
'country' => $status->place->country
|
'country' => $status->place->country
|
||||||
] : null,
|
] : null,
|
||||||
];
|
];
|
||||||
|
|
|
@ -79,7 +79,7 @@ class CreateNote extends Fractal\TransformerAbstract
|
||||||
'type' => 'Place',
|
'type' => 'Place',
|
||||||
'name' => $status->place->name,
|
'name' => $status->place->name,
|
||||||
'longitude' => $status->place->long,
|
'longitude' => $status->place->long,
|
||||||
'lattitude' => $status->place->lat,
|
'latitude' => $status->place->lat,
|
||||||
'country' => $status->place->country
|
'country' => $status->place->country
|
||||||
] : null,
|
] : null,
|
||||||
]
|
]
|
||||||
|
|
|
@ -72,7 +72,7 @@ class Note extends Fractal\TransformerAbstract
|
||||||
'type' => 'Place',
|
'type' => 'Place',
|
||||||
'name' => $status->place->name,
|
'name' => $status->place->name,
|
||||||
'longitude' => $status->place->long,
|
'longitude' => $status->place->long,
|
||||||
'lattitude' => $status->place->lat,
|
'latitude' => $status->place->lat,
|
||||||
'country' => $status->place->country
|
'country' => $status->place->country
|
||||||
] : null,
|
] : null,
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue