<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Dropzone Forums — dz.add_dropbar causing Dropzone to crash]]></title>
		<link>https://forums.aptonic.com/topic/515/dzadddropbar-causing-dropzone-to-crash/</link>
		<atom:link href="https://forums.aptonic.com/feed/rss/topic/515/" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in dz.add_dropbar causing Dropzone to crash.]]></description>
		<lastBuildDate>Mon, 09 May 2022 08:27:02 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1328/#p1328</link>
			<description><![CDATA[<p>4.3.1 is now released. So the dz.add_dropbar() API should work as expected once you update to this version.</p>]]></description>
			<author><![CDATA[null@example.com (John)]]></author>
			<pubDate>Mon, 09 May 2022 08:27:02 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1328/#p1328</guid>
		</item>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1326/#p1326</link>
			<description><![CDATA[<p>I really hope this week. The fix has long been done, it&#039;s just waiting on me to finish SFTP folder uploading which is going out with 4.3.1. This week or next for sure.</p><p>Sorry for the wait.</p>]]></description>
			<author><![CDATA[null@example.com (John)]]></author>
			<pubDate>Sun, 08 May 2022 03:43:41 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1326/#p1326</guid>
		</item>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1325/#p1325</link>
			<description><![CDATA[<p>Hi John,</p><p>Any updates on when the new release will be available?</p>]]></description>
			<author><![CDATA[null@example.com (ryan)]]></author>
			<pubDate>Sun, 08 May 2022 03:41:33 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1325/#p1325</guid>
		</item>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1300/#p1300</link>
			<description><![CDATA[<p>We don&#039;t send out emails for every release however the app will tell you when there is an update. Will update you here when this fix is out also.</p>]]></description>
			<author><![CDATA[null@example.com (John)]]></author>
			<pubDate>Fri, 08 Apr 2022 11:59:04 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1300/#p1300</guid>
		</item>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1299/#p1299</link>
			<description><![CDATA[<p>Hi John,</p><p>Yeah, that was a bad example - I was mostly throwing in a sample path just to demonstrate the method I was calling to make sure there wasn&#039;t something else I needed to be doing. I hard coded paths to files that I knew already existed on my computer and it still made it crash.</p><p>Thanks for looking into it though. Looking forward to the fix. I really like the software and how extensive the API documentation is.</p><p>Do you send out emails when there&#039;s a new release?</p>]]></description>
			<author><![CDATA[null@example.com (ryan)]]></author>
			<pubDate>Fri, 08 Apr 2022 04:11:45 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1299/#p1299</guid>
		</item>
		<item>
			<title><![CDATA[Re: dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1295/#p1295</link>
			<description><![CDATA[<p>Hi Ryan,</p><p>You&#039;d want to do this instead as os.path.abspath() will not expand the tilde as you expect:</p><div class="codebox"><pre><code>file_paths = [os.path.expanduser(&quot;~/test_file.mp4&quot;)]
dz.add_dropbar(file_paths)</code></pre></div><p>However I&#039;ve just tested this for you and unfortunately I accidentally broke the dz.add_dropbar() API in the latest update and calling this will always cause a crash even when using the correct tilde expansion above. I have made the fix which will be released with Dropzone 4.3.1 in a week or so and then you can give this another go.</p>]]></description>
			<author><![CDATA[null@example.com (John)]]></author>
			<pubDate>Wed, 06 Apr 2022 01:01:07 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1295/#p1295</guid>
		</item>
		<item>
			<title><![CDATA[dz.add_dropbar causing Dropzone to crash]]></title>
			<link>https://forums.aptonic.com/post/1294/#p1294</link>
			<description><![CDATA[<p>I&#039;m trying to add a bit of code to the YouTube Downloader that will add the newly created file to the dropbar. However, when I add dz.add_dropbar to the code, Dropzone crashes each time. I&#039;ve made sure that the file exists at the specified pathway. I&#039;ve also tested it with a few different file types. I logged the message to a file so I could see the error since it causes the whole program to crash and I therefore can&#039;t view the debugger. The error is:</p><p><span style="color:#FF0000">EOF when reading a line</span></p><br /><p>Here is a snippet of the code I&#039;ve added that causes the error:</p><div class="codebox"><pre><code>file_paths = [os.path.abspath(&#039;~&#039;) + &quot;test_file.m4a&quot;]
dz.add_dropbar(file_paths)</code></pre></div><br /><p>I can&#039;t figure out why it&#039;s throwing an EOF error.</p>]]></description>
			<author><![CDATA[null@example.com (ryan)]]></author>
			<pubDate>Tue, 05 Apr 2022 19:37:48 +0000</pubDate>
			<guid>https://forums.aptonic.com/post/1294/#p1294</guid>
		</item>
	</channel>
</rss>
