diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2014 Alexander Thiemann <mail@athiemann.net>
+Copyright (c) 2014 - 2015 Alexander Thiemann <mail@athiemann.net>
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff --git a/Spock-digestive.cabal b/Spock-digestive.cabal
--- a/Spock-digestive.cabal
+++ b/Spock-digestive.cabal
@@ -1,13 +1,14 @@
 name:                Spock-digestive
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Digestive functors support for Spock
 description:         Run forms defined using digestive functors with Spock
 homepage:            https://github.com/agrafix/Spock-digestive
+Bug-reports:         https://github.com/agrafix/Spock-digestive/issues
 license:             MIT
 license-file:        LICENSE
 author:              Alexander Thiemann <mail@athiemann.net>
 maintainer:          mail@athiemann.net
-copyright:           (c) 2014 Alexander Thiemann <mail@athiemann.net>
+copyright:           (c) 2014 - 2015 Alexander Thiemann <mail@athiemann.net>
 category:            Web
 build-type:          Simple
 cabal-version:       >=1.10
@@ -25,3 +26,7 @@
                        wai >=3.0
   hs-source-dirs:      src
   default-language:    Haskell2010
+
+source-repository head
+  type:     git
+  location: git://github.com/agrafix/Spock-digestive.git
diff --git a/src/Web/Spock/Digestive.hs b/src/Web/Spock/Digestive.hs
--- a/src/Web/Spock/Digestive.hs
+++ b/src/Web/Spock/Digestive.hs
@@ -32,5 +32,5 @@
                  applyParam f =
                      map (f . snd) . filter ((== name) . fst)
              vars <- (applyParam (TextInput)) <$> params
-             sentFiles <- (applyParam (FileInput . T.unpack . uf_name) . HM.toList) <$> files
+             sentFiles <- (applyParam (FileInput . uf_tempLocation) . HM.toList) <$> files
              return (vars ++ sentFiles)
