Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed issue where canceling chunked upload in Silverlight didn't work.
Changed the title of the error test page.
  • Loading branch information
spocke committed Mar 2, 2010
1 parent b1ba46a commit 0240fdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/csharp/Plupload/FileReference.cs
Expand Up @@ -346,7 +346,7 @@ public class FileReference {
syncContext.Send(delegate {
this.OnUploadComplete(new UploadEventArgs(content, chunk, chunks));
}, this);
} else
} else if (this.cancelled)
this.UploadNextChunk();
} catch (Exception ex) {
syncContext.Send(delegate {
Expand Down
2 changes: 1 addition & 1 deletion tests/error.html
Expand Up @@ -185,7 +185,7 @@
<body>

<form method="post" action="../examples/dump.php">
<h1>Multipart test page</h1>
<h1>Error handling test page</h1>

<div>
Error to fake:
Expand Down

0 comments on commit 0240fdf

Please sign in to comment.