Chrome export fixes: too-long names, redact group ids (#1402)

* On export, don't print out entire group id, just last three chars

FREEBIE

* Export: Limit conversation dirs to 30 characters of original name

FREEBIE

* Redact groups ids on import as well

FREEBIE

* InboxView: Protect against nonexistent loading screen

FREEBIE
This commit is contained in:
Scott Nonnenberg 2017-08-30 09:30:21 -07:00 committed by GitHub
parent 6190ad794a
commit 548586b934
2 changed files with 12 additions and 6 deletions

View file

@ -150,8 +150,10 @@
banner.$el.prependTo(this.$el);
this.$el.addClass('expired');
} else if (Whisper.Migration.inProgress()) {
this.appLoadingScreen.remove();
this.appLoadingScreen = null;
if (this.appLoadingScreen) {
this.appLoadingScreen.remove();
this.appLoadingScreen = null;
}
this.showMigrationScreen();
} else if (storage.get('migrationEnabled')) {
var migrationBanner = new Whisper.MigrationAlertBanner().render();