summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-03-05 09:22:28 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-03-05 09:22:28 +0900
commitf5f7ceb66b397e0b2ed94cbcb3610ab757af4229 (patch)
tree8aa958f22aa4258cc5e139c793e85d064bbbfada /src
parentv3972 (diff)
downloadsharkey-f5f7ceb66b397e0b2ed94cbcb3610ab757af4229.tar.gz
sharkey-f5f7ceb66b397e0b2ed94cbcb3610ab757af4229.tar.bz2
sharkey-f5f7ceb66b397e0b2ed94cbcb3610ab757af4229.zip
oops
Diffstat (limited to 'src')
-rw-r--r--src/api/endpoints/posts/create.ts4
-rw-r--r--src/web/docs/api/entities/post.yaml4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/api/endpoints/posts/create.ts b/src/api/endpoints/posts/create.ts
index 15cbc4845c..1c3ab53457 100644
--- a/src/api/endpoints/posts/create.ts
+++ b/src/api/endpoints/posts/create.ts
@@ -41,8 +41,8 @@ module.exports = (params, user: IUser, app) => new Promise(async (res, rej) => {
// Get 'geo' parameter
const [geo, geoErr] = $(params.geo).optional.nullable.strict.object()
- .have('latitude', $().number().range(-180, 180))
- .have('longitude', $().number().range(-90, 90))
+ .have('latitude', $().number().range(-90, 90))
+ .have('longitude', $().number().range(-180, 180))
.have('altitude', $().nullable.number())
.have('accuracy', $().nullable.number())
.have('altitudeAccuracy', $().nullable.number())
diff --git a/src/web/docs/api/entities/post.yaml b/src/web/docs/api/entities/post.yaml
index 451d2579d9..f780263144 100644
--- a/src/web/docs/api/entities/post.yaml
+++ b/src/web/docs/api/entities/post.yaml
@@ -140,12 +140,12 @@ props:
type: "number"
optional: false
desc:
- ja: "緯度。-180〜180で表す。"
+ ja: "緯度。-90〜90で表す。"
- name: "longitude"
type: "number"
optional: false
desc:
- ja: "経度。-90〜90で表す。"
+ ja: "経度。-180〜180で表す。"
- name: "altitude"
type: "number"
optional: false