CollectionFS And AS3

I created a simple site to handle uploads with collectionFS, http://uploadapp.meteor.com/, when I click on upload it uploads the file to my AS3 bucket but if I click on the image and copy url it gives me a local url example:

http://uploadapp.meteor.com/cfs/files/videos/tn877RSLTC2S6SnwG/download%20(1).jpeg?token=eyJhdXRoVG9rZW4iOiJHYkpZVkZ4V0dOLUlCQmJPbzdrdUxxS3VuQ3FDWDFBOUtSNzBBV1p3X0t3In0%3D

this means that the image is showing from the mongodb or from as3?

If is not showing it from AS3 how can I make it show directly from AS3? (the images are stored to the as3 bucket so the upload is working)

The event handler for the upload form is :

Template.hello.events({
    'change .fileInput':function(evt,tmpl){
      FS.Utility.eachFile(event,function(file){
        var fileObj = new FS.File(file);
        Videos.insert(fileObj),function(err){
          console.log(err);
        }
      })
    }
  });