Can't update profile picture

I’d try to update user picture. But it not working.
Source:

Template.pho.events({
‘change input[type=file]’: function(event, template) {
FS.Utility.eachFile(event, function(file) {
var fsFile = new FS.File(file);
console.log(“Inserting FS file”, fsFile);
Images.insert(fsFile, function(err, fileObj) {
if (err) {
console.error(err);
}
console.log(“Inserted file”, fileObj);
Meteor.users.update({_id: Meteor.userId()}, {$set: {“profile.profPicture”: fileObj }});
});
});
}
});

If you need another source file, please let me know