# Line of Code Crashing Thunkable

**URL:** https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860
**Category:** Questions about Thunkable X
**Created:** [August 7, 2021, 8:05pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860 "2021-08-07T20:05:05Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 7, 2021, 8:05pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/1 "2021-08-07T20:05:05Z")

</div>

Below is the code.  
The line in red is the one that crashes Thunkable.  
 ![Screen Shot 2021-08-07 at 3.01.39 PM](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/2/1/2158a1bb3ddc3bb55bcfefaeea94027afe5b596e.png)  
[Before it tries to make list from text, the text is “bob@com,ooareoo@com,test@com”]

---

<div class="post-metadata">

### Author: ![skulamester](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/skulamester/32/100480_2.png) [@skulamester](https://community.thunkable.com/u/skulamester)
#### Post date: [August 7, 2021, 8:08pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/2 "2021-08-07T20:08:12Z")

</div>

You are handling object as a string, which might lead to the error.

Set this to the value of your variable called Decoder:  
 ![image](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/3X/8/0/800bbfc0d691b38af7dcb6d37f269f917243dc0f.png)

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 7, 2021, 8:10pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/3 "2021-08-07T20:10:07Z")

</div>

Thanks for that!

---

<div class="post-metadata">

### Author: ![muneer](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/muneer/32/75210_2.png) [@muneer](https://community.thunkable.com/u/muneer)
#### Post date: [August 7, 2021, 8:16pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/4 "2021-08-07T20:16:10Z")

</div>

Actually, `get object properties` returns a `List` so you are trying to use the block `make list from text` in making **list** from **list**.

You could simply say [set app variable Sites] to [app variable Decoder] if you want to have two separate identical lists.

---

<div class="post-metadata">

### Author: ![jonathonschnoor6x4b5](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jonathonschnoor6x4b5/32/112262_2.png) [@jonathonschnoor6x4b5](https://community.thunkable.com/u/jonathonschnoor6x4b5)
#### Post date: [August 7, 2021, 8:19pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/5 "2021-08-07T20:19:05Z")

</div>

Ah ok, thanks for that! 😀

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 1:17pm UTC](https://community.thunkable.com/t/line-of-code-crashing-thunkable/1436860/6 "2024-11-08T13:17:36Z")

</div>


