Prevent extension response from changing item name

This commit is contained in:
Mo Bitar
2017-10-30 16:42:58 -05:00
parent ac0a1c33c6
commit 9b1298ed8a

View File

@@ -104,13 +104,6 @@ class ExtensionManager {
}
updateExtensionFromRemoteResponse(extension, response) {
// Don't allow remote response to set these flags
delete response.encrypted;
delete response.uuid;
if(response.name) {
extension.name = response.name;
}
if(response.description) {
extension.description = response.description;
}