# I get this error when trying to see more info about an item during a review

**URL:** https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281
**Category:** Bugs & Errors
**Created:** [February 21, 2019, 1:37am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281 "2019-02-21T01:37:53Z")
**Posts on this page:** 16
**Page:** 1

<div class="post-metadata">

### Author: ![Liuyuan](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/liuyuan/32/222283_2.png) [@Liuyuan](https://community.wanikani.com/u/Liuyuan)
#### Post date: [February 21, 2019, 1:37am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/1 "2019-02-21T01:37:53Z")

</div>

All userscripts disabled.

 ![image](https://global.discourse-cdn.com/wanikanicommunity/original/3X/6/6/66635ee396a1ece9df75ccc860ff4f37a94e0dde.png)

---

<div class="post-metadata">

### Author: ![Swyn](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/swyn/32/236525_2.png) [@Swyn](https://community.wanikani.com/u/Swyn)
#### Post date: [February 21, 2019, 1:39am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/2 "2019-02-21T01:39:54Z")

</div>

yep same here

---

<div class="post-metadata">

### Author: ![tip](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/tip/32/219684_2.png) [@tip](https://community.wanikani.com/u/tip)
#### Post date: [February 21, 2019, 1:40am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/3 "2019-02-21T01:40:30Z")

</div>

me too and I lost my progress

---

<div class="post-metadata">

### Author: ![seanblue](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/seanblue/32/579844_2.png) [@seanblue](https://community.wanikani.com/u/seanblue)
#### Post date: [February 21, 2019, 1:43am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/4 "2019-02-21T01:43:05Z")

</div>

@viet @oldbonsai Sounds like something’s going on.

---

<div class="post-metadata">

### Author: ![MP7373](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/mp7373/32/50461_2.png) [@MP7373](https://community.wanikani.com/u/MP7373)
#### Post date: [February 21, 2019, 1:45am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/5 "2019-02-21T01:45:18Z")

</div>

I’ve got the same error.

---

<div class="post-metadata">

### Author: ![dslee327](https://cdck-file-uploads-global.s3.dualstack.us-west-2.amazonaws.com/wanikanicommunity/original/3X/f/d/fd4c154120954695f788402f3bcf4e616499bc2d.png) [@dslee327](https://community.wanikani.com/u/dslee327)
#### Post date: [February 21, 2019, 1:47am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/6 "2019-02-21T01:47:01Z")

</div>

I am also getting this error.

---

<div class="post-metadata">

### Author: ![viet](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/viet/32/41979_2.png) [@viet](https://community.wanikani.com/u/viet)
#### Post date: [February 21, 2019, 1:47am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/7 "2019-02-21T01:47:33Z")

</div>

Looking into this now.

---

<div class="post-metadata">

### Author: ![Liuyuan](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/liuyuan/32/222283_2.png) [@Liuyuan](https://community.wanikani.com/u/Liuyuan)
#### Post date: [February 21, 2019, 1:50am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/8 "2019-02-21T01:50:14Z")

</div>

@viet  
Maybe…

```auto
...
                if (i.voc)
                    return o = "/json/vocabulary/" + i.id,
                    $.getJSON(o, function(r) {
                        var o, s, u, c, l, d, f, p;
                        r.meaning_explanation = replaceTags.parse(r.meaning_explanation),
                        r.reading_explanation = replaceTags.parse(r.reading_explanation),
>>> l = i.parts_of_speech.length > 0 ? i.parts_of_speech.join(", ") : "N/A",

```

should be

```auto
                if (i.voc)
                    return o = "/json/vocabulary/" + i.id,
                    $.getJSON(o, function(r) {
                        var o, s, u, c, l, d, f, p;
                        r.meaning_explanation = replaceTags.parse(r.meaning_explanation),
                        r.reading_explanation = replaceTags.parse(r.reading_explanation),
 >>> l = r.parts_of_speech.length > 0 ? r.parts_of_speech.join(", ") : "N/A",

```

?

I don’t know what the variables are before they got minified. \O\_o/.  
It looks like that line is trying to concatenate item object rather than something from the response.

---

<div class="post-metadata">

### Author: ![viet](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/viet/32/41979_2.png) [@viet](https://community.wanikani.com/u/viet)
#### Post date: [February 21, 2019, 1:55am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/9 "2019-02-21T01:55:40Z")

</div>

We pinpointed the issue. The fix should be live momentarily (in five’ish minutes).

Sorry about the experience.

---

<div class="post-metadata">

### Author: ![viet](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/viet/32/41979_2.png) [@viet](https://community.wanikani.com/u/viet)
#### Post date: [February 21, 2019, 2:00am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/10 "2019-02-21T02:00:13Z")

</div>

The fix is live now. Tested it on the website and it is returning the information now.

Thanks for the feedback and help all.

---

<div class="post-metadata">

### Author: ![Norbosan](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/norbosan/32/236826_2.png) [@Norbosan](https://community.wanikani.com/u/Norbosan)
#### Post date: [February 21, 2019, 2:00am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/11 "2019-02-21T02:00:43Z")

</div>

Only a minute to go! 😊

---

<div class="post-metadata">

### Author: ![Liuyuan](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/liuyuan/32/222283_2.png) [@Liuyuan](https://community.wanikani.com/u/Liuyuan)
#### Post date: [February 21, 2019, 2:00am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/12 "2019-02-21T02:00:49Z")

</div>

It worked, good job!

---

<div class="post-metadata">

### Author: ![Norbosan](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/norbosan/32/236826_2.png) [@Norbosan](https://community.wanikani.com/u/Norbosan)
#### Post date: [February 21, 2019, 2:02am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/13 "2019-02-21T02:02:07Z")

</div>

All good! 👍👍👍

---

<div class="post-metadata">

### Author: ![ViviGayming](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/vivigayming/32/232554_2.png) [@ViviGayming](https://community.wanikani.com/u/ViviGayming)
#### Post date: [February 21, 2019, 2:02am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/14 "2019-02-21T02:02:45Z")

</div>

Came here to see if it was just me, and I saw it was already fixed. I like it!

---

<div class="post-metadata">

### Author: ![stardustashes](https://sea1.discourse-cdn.com/wanikanicommunity/user_avatar/community.wanikani.com/stardustashes/32/187249_2.png) [@stardustashes](https://community.wanikani.com/u/stardustashes)
#### Post date: [February 21, 2019, 2:05am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/15 "2019-02-21T02:05:50Z")

</div>

Thanks guys, it worked! I’m glad it wasn’t just me…here I thought it might just be Microsoft Edge being dumb, as usual.

---

<div class="post-metadata">

### Author: ![system](https://global.discourse-cdn.com/wanikanicommunity/original/4X/6/2/a/62a8b0f4c59ff2c5b6651ffcf43531480b3e5297.png) [@system](https://community.wanikani.com/u/system)
#### Post date: [February 21, 2020, 2:38am UTC](https://community.wanikani.com/t/i-get-this-error-when-trying-to-see-more-info-about-an-item-during-a-review/35281/17 "2020-02-21T02:38:07Z")

</div>

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
