Update Goldens
continuous-integration/drone/pr Build is pending Details

This commit is contained in:
Sarah Jamie Lewis 2022-02-07 15:35:01 -08:00
parent bf4cfde7df
commit 62bca86c19
3 changed files with 10 additions and 7 deletions

View File

@ -259,12 +259,14 @@ class CwtchNotifier {
case "UpdatedProfileAttribute": case "UpdatedProfileAttribute":
if (data["Key"] == "public.profile.name") { if (data["Key"] == "public.profile.name") {
profileCN.getProfile(data["ProfileOnion"])?.nickname = data["Data"]; profileCN.getProfile(data["ProfileOnion"])?.nickname = data["Data"];
} else if (data["Key"].toString().startsWith("local.filesharing.") && data["Key"].toString().endsWith(".path")) { } else if (data["Key"].toString().startsWith("local.filesharing.")) {
// local.conversation.filekey.path if (data["Key"].toString().endsWith(".path")) {
List<String> keyparts = data["Key"].toString().split("."); // local.conversation.filekey.path
if (keyparts.length == 5) { List<String> keyparts = data["Key"].toString().split(".");
String filekey = keyparts[2] + "." + keyparts[3]; if (keyparts.length == 5) {
profileCN.getProfile(data["ProfileOnion"])?.downloadSetPathForSender(filekey, data["Data"]); String filekey = keyparts[2] + "." + keyparts[3];
profileCN.getProfile(data["ProfileOnion"])?.downloadSetPathForSender(filekey, data["Data"]);
}
} }
} else { } else {
EnvironmentConfig.debugLog("unhandled set attribute event: ${data['Key']}"); EnvironmentConfig.debugLog("unhandled set attribute event: ${data['Key']}");

View File

@ -94,7 +94,8 @@ class _AddEditProfileViewState extends State<AddEditProfileView> {
cursor: Provider.of<Settings>(context).isExperimentEnabled(ImagePreviewsExperiment) ? SystemMouseCursors.click : SystemMouseCursors.basic, cursor: Provider.of<Settings>(context).isExperimentEnabled(ImagePreviewsExperiment) ? SystemMouseCursors.click : SystemMouseCursors.basic,
child: GestureDetector( child: GestureDetector(
// don't allow setting of profile images if the image previews experiment is disabled. // don't allow setting of profile images if the image previews experiment is disabled.
onTap: Provider.of<AppState>(context, listen: false).disableFilePicker || !Provider.of<Settings>(context, listen: false).isExperimentEnabled(ImagePreviewsExperiment) onTap: Provider.of<AppState>(context, listen: false).disableFilePicker ||
!Provider.of<Settings>(context, listen: false).isExperimentEnabled(ImagePreviewsExperiment)
? null ? null
: () { : () {
filesharing.showFilePicker(context, MaxImageFileSharingSize, (File file) { filesharing.showFilePicker(context, MaxImageFileSharingSize, (File file) {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB