mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-28 20:40:39 +00:00
Fix debugger variables
I broke this in b2267d569b
This fix is gross, but I'm just trying to move forward.
This commit is contained in:
parent
931ba4d8ca
commit
42a409f339
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ export default function Variable({ variable }) {
|
|||
if (obj == null) {
|
||||
type = "Unknown object";
|
||||
} else {
|
||||
type = obj.getclassname();
|
||||
// Bit of a hack. We should probably fix this.
|
||||
type = obj.prototype.getclassname();
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue